-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
21 lines (21 loc) · 955 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"scripts": {
"clean": "rm -rf node_modules yarn-error.log css static/css *.log *.sqlite _site/ build/ .jekyll-metadata .bundle",
"serve": "./entrypoint 0.0.0.0:$PORT",
"start": "yarn run build && yarn run serve",
"build": "yarn run build-css",
"build-css": "sass src:static/css --load-path=node_modules --style=compressed && postcss --use autoprefixer --replace 'static/css/**/*.css' --no-map",
"watch-css": "yarn build-css && sass --load-path=node_modules -w src:static/css --style=compressed",
"format-python": "black --line-length 79 webapp",
"test": "yarn run lint-python && yarn run test-python",
"test-python": "python3 -m unittest discover tests",
"lint-python": "flake8 webapp tests && black --check --line-length 79 webapp tests"
},
"dependencies": {
"autoprefixer": "10.4.13",
"sass": "1.57.1",
"vanilla-framework": "3.14.0",
"postcss": "8.4.31",
"postcss-cli": "10.1.0"
}
}