-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.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
{
"license": "UNLICENSED",
"private": true,
"name": "webct-frontend",
"dependencies": {
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@shoelace-style/shoelace": "2.0.0-beta.79",
"chart.js": "^3.6.1",
"highlight.js": "^11.5.1",
"sass": "^1.45.0",
"typescript": "^4.3.5"
},
"devDependencies": {
"@types/chart.js": "^2.9.34",
"@types/jquery": "^3.5.6",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^7.32.0",
"eslint-plugin-tsdoc": "^0.2.14",
"jquery": "^3.6.0",
"rollup": "^2.53.1",
"rollup-plugin-terser": "^7.0.2",
"uglify-js": "^3.13.10"
},
"scripts": {
"write-version": "python version.py",
"build": "npm run write-version && npx tsc && npx rollup -c && sass ./webct/blueprints/app/static/scss/app.scss ./webct/blueprints/app/static/css/app.css -s compressed --no-source-map",
"serve": "npm run build && python app.py",
"package": "npm run build && del dist /F /S /Q && xcopy data dist\\data\\ /S && pyinstaller webct.spec"
}
}