-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.33 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"description": "CSS and JS for Stencila Hub Manager",
"repository": "https://github.com/stencila/hub",
"license": "Apache-2.0",
"scripts": {
"prepare": "node generate.js",
"build:css": "NODE_ENV=production postcss manager/static/sass/styles.scss -o manager/static/css/styles.css -m",
"watch:css": "postcss manager/static/sass/styles.scss -o manager/static/css/styles.css -m --watch",
"build:js": "NODE_ENV=production rollup --config",
"watch:js": "rollup --config -w",
"build:py": "node generate.js",
"watch:serve": "browser-sync start -p localhost:8000 --no-notify -f manager/static/css/**/*.css,manager/static/js/**/*.js,**/templates/**/*.html",
"build": "npm run build:css && npm run build:js && npm run build:py",
"start": "concurrently \"npm:watch:css\" \"npm:watch:js\" \"npm:watch:serve\"",
"lint:format": "js-beautify --editorconfig --end-with-newline --indent-size 2 --type html --brace-style none,preserve-inline --wrap-line-length 120 --wrap-attributes force-aligned --templating django --file **/templates/*.html **/templates/**/*.html **/templates/**/**/*.html"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
],
"engines": {
"node": ">=14 <16"
},
"dependencies": {
"@creativebulma/bulma-tooltip": "1.2.0",
"@popperjs/core": "2.10.2",
"@vizuaalog/bulmajs": "0.12.1",
"bulma": "0.9.3",
"bulma-toast": "2.4.1",
"htmx.org": "1.5.0",
"userflow.js": "2.2.0"
},
"devDependencies": {
"@babel/core": "7.16.12",
"@babel/plugin-proposal-export-default-from": "7.16.7",
"@babel/preset-env": "7.16.11",
"@fullhuman/postcss-purgecss": "4.1.3",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-replace": "3.0.1",
"@stencila/components": "0.41.7",
"@stencila/email-templates": "0.2.1",
"@stencila/thema": "2.24.4",
"autoprefixer": "10.4.2",
"browser-sync": "2.27.7",
"concurrently": "6.5.1",
"css-mqpacker": "7.0.0",
"cssnano": "5.0.16",
"gh-pages": "3.2.3",
"js-beautify": "1.14.0",
"node-sass": "6.0.1",
"postcss": "8.4.5",
"postcss-cli": "8.3.1",
"postcss-import": "14.0.2",
"postcss-import-url": "7.0.0",
"postcss-node-sass": "3.1.1",
"postcss-scss": "4.0.3",
"rollup": "2.66.1",
"rollup-plugin-terser": "7.0.2"
}
}