-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1.62 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
{
"name": "stats.wwdt.me-bootstrap",
"version": "0.1.0",
"description": "Bootstrap UI for stats.wwdt.me",
"author": {
"name": "Linh Pham",
"url": "https://linhpham.org/"
},
"license": "Apache-2.0",
"private": true,
"dependencies": {
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"css-minify": "^2.0.0",
"sass": "^1.77.8"
},
"scripts": {
"compile": "sass --no-source-map scss/main.scss:app/static/css/app.css",
"compile-mini": "sass --no-source-map --style=compressed scss/main.scss:app/static/css/app.min.css",
"compile-error": "sass --no-source-map scss/errors.scss:app/static/css/errors.css",
"compile-error-mini": "sass --no-source-map --style=compressed scss/errors.scss:app/static/css/errors.min.css",
"compile-all": "sass --no-source-map scss/main.scss:app/static/css/app.css scss/errors.scss:app/static/css/errors.css",
"compile-all-mini": "sass --no-source-map --style=compressed scss/main.scss:app/static/css/app.min.css scss/errors.scss:app/static/css/errors.min.css",
"compile-ibm-plex": "sass --no-source-map scss/ibm-plex-font.scss:app/static/css/ibm-plex.css",
"compile-ibm-plex-mini": "sass --no-source-map --style=compressed scss/ibm-plex-font.scss:app/static/css/ibm-plex.min.css",
"watch": "sass --watch scss/main.scss:app/static/css/app.css",
"js-copy-bundle": "cp node_modules/bootstrap/dist/js/bootstrap.bundle.min.js node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map app/static/js/",
"test": "echo \"Error: no test specified\" && exit 1"
}
}