-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.25 KB
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
63
{
"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",
"build-dev": "npm-run-all 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.30.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.4.19",
"vue-template-compiler": "^2.6.14"
},
"overrides": {
"brace-expansion": "^1.1.12",
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"decode-uri-component": "^0.2.1",
"minimatch": "^3.0.5",
"nanoid": "^3.3.8",
"path-parse": "^1.0.7",
"semver": "^5.7.2",
"terser": "^5.15.0"
}
}