forked from canonical/charmed-kubeflow.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 2.04 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
{
"author": "Canonical Webteam",
"license": "LGPL v3",
"scripts": {
"clean": "rm -rf node_modules yarn-error.log css static/css *.log *.sqlite _site/ build/ .jekyll-metadata .bundle",
"watch": "watch -p 'static/sass/**/*' -p 'static/js/**/*.js' -c 'yarn run build'",
"watch-js": "webpack --watch",
"watch-scss": "watch -p 'static/sass/**/*.scss' -c 'yarn run build-scss'",
"build": "yarn run build-css && yarn run build-js",
"build-css": "sass static/sass/styles.scss static/css/styles.css --load-path=node_modules --style=compressed && postcss --no-map --use autoprefixer --replace 'static/css/**/*.css'",
"build-js": "yarn run build-js-bundle",
"build-js-bundle": "webpack",
"format-python": "black --line-length 79 webapp",
"lint-python": "flake8 webapp tests && black --check --line-length 79 webapp tests",
"lint-js": "eslint static/js",
"lint-scss": "stylelint static/**/*.scss",
"serve": "./entrypoint 0.0.0.0:${PORT}",
"start": "yarn run build && concurrently --raw 'yarn run watch' 'yarn run serve'",
"test": "yarn run lint-scss && yarn run lint-python && yarn run test-python",
"test-python": "python3 -m unittest discover tests",
"test-js": "jest"
},
"dependencies": {
"@canonical/global-nav": "3.6.1",
"@canonical/cookie-policy": "3.5.0",
"autoprefixer": "10.4.13",
"babel-eslint": "10.1.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-prettier": "4.2.1",
"expose-loader": "4.0.0",
"lint-staged": "13.1.0",
"sass": "1.57.1",
"postcss": "8.4.21",
"postcss-cli": "10.1.0",
"prettier": "2.8.2",
"vanilla-framework": "3.15.1",
"watch-cli": "0.2.3",
"webpack": "5.75.0",
"webpack-cli": "5.0.1"
},
"devDependencies": {
"@babel/core": "7.20.12",
"@babel/preset-env": "7.20.2",
"babel-jest": "29.3.1",
"babel-loader": "9.1.2",
"concurrently": "7.6.0",
"jest": "29.3.1",
"stylelint": "14.16.1",
"stylelint-config-standard-scss": "6.1.0",
"stylelint-order": "6.0.1"
}
}