-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 859 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 859 Bytes
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
{
"name": "dashboard",
"private": true,
"version": "1.5.1",
"type": "module",
"main": "dist/dashboard.js",
"scripts": {
"development": "run-p start dev",
"dev": "vite --host",
"start": "nodemon server.js",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest --environment jsdom --root src/ run",
"test-watch:unit": "vitest --environment jsdom --root src/ watch"
},
"devDependencies": {
"chart.js": "^4.2.1",
"chartjs-plugin-datalabels": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"naive-ui": "^2.34.4",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"vite": "^4.2.0",
"vue": "^3.2.47",
"vuex": "^4.1.0",
"vuex-map-fields": "^1.4.1"
},
"dependencies": {
"csvwritergen": "^0.0.4",
"vue-router": "^4.2.4"
}
}