-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.9 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
{
"name": "peermetrics-web",
"version": "1.0.0",
"description": "web service of peermetrics",
"main": "index.js",
"scripts": {
"build-participant": "cross-env BUILD_TARGET=participant vite build",
"build-conference": "cross-env BUILD_TARGET=conference vite build",
"build-dashboard": "cross-env BUILD_TARGET=app-dashboard vite build",
"build": "cross-env BUILD=production npm-run-all --parallel build-participant build-conference build-dashboard",
"watch-participant": "cross-env BUILD_TARGET=participant vite build --watch --sourcemap",
"watch-conference": "cross-env BUILD_TARGET=conference vite build --watch --sourcemap",
"watch-dashboard": "cross-env BUILD_TARGET=app-dashboard vite build --watch --sourcemap",
"watch": "npm-run-all --parallel watch-participant watch-conference watch-dashboard",
"css": "sass static/css/main.scss static/css/main.css --style compressed --no-source-map --quiet",
"css-watch": "sass --watch static/css/main.scss static/css/main.css --style compressed --no-source-map",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onel/api-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/peermetrics/web"
},
"homepage": "https://github.com/peermetrics/web",
"dependencies": {
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.21.2",
"chart.js": "^4.4.1",
"chartjs-adapter-moment": "^1.0.1",
"chartjs-plugin-datalabels": "^2.2.0",
"jquery": "^3.6.0",
"moment": "^2.29.4",
"prismjs": "^1.27.0",
"smartwizard": "^4.4.1",
"vue": "2.7.16",
"vue-chartjs": "^5.3.0",
"wretch": "^2.8.1"
},
"devDependencies": {
"@vitejs/plugin-vue2": "^2.3.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"sass": "^1.49.9",
"vite": "^5.0.12",
"vue-template-compiler": "^2.6.14"
}
}