forked from comic/grand-challenge.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"name": "grand-challenge",
"version": "1.0.0",
"dependencies": {
"@fortawesome/fontawesome-free": "^5.7.2",
"@github/markdown-toolbar-element": "1.2.0",
"jquery": "3.5.1",
"jquery-ui": "^1.12.1",
"popper.js": "^1.14.3",
"bootstrap": "^4.3.1",
"bootswatch": "^4.4.1",
"datatables.net-bs4": "^1.10.18",
"datatables.net-buttons-bs4": "^1.5.4",
"blueimp-file-upload": "^9.31.0",
"jquery.cookie": "^1.4.1",
"mathjax": "^2.7.5",
"chart.js": "^2.7.2"
},
"devDependencies": {
"sass": "^1.25.0"
},
"scripts": {
"build": "mkdir -p dist/js/markdown-toolbar-element dist/css dist/fa/css dist/fa/webfonts && npm run copy:jquery && npm run copy:bootstrap && npm run copy:fontawesome && npm run copy:markdown && npm run sass:build",
"copy:bootstrap": "cp ./node_modules/bootstrap/dist/css/*.css ./dist/css/ && cp ./node_modules/bootstrap/dist/js/*.js ./dist/js/",
"copy:jquery": "cp ./node_modules/jquery/dist/jquery*.js ./dist/js/",
"copy:fontawesome": "cp ./node_modules/@fortawesome/fontawesome-free/css/*.css ./dist/fa/css/ && cp ./node_modules/@fortawesome/fontawesome-free/webfonts/*.* ./dist/fa/webfonts/",
"copy:markdown": "cp ./node_modules/@github/markdown-toolbar-element/dist/index.umd.js ./dist/js/markdown-toolbar-element/",
"sass:build": "sass /src/base.scss ./dist/css/base.min.css -s compressed"
},
"license": "Apache-2.0"
}