-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "artifact",
"private": false,
"license": "MIT",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"proto": "cd src/ys/p2p && pbjs -t static-module -w es6 --force-long -o proto.js proto/*.proto && pbts -o proto.d.ts proto.js",
"deploy": "bash scripts/deploy.sh",
"test": "vitest"
},
"dependencies": {
"@types/emscripten": "^1.39.6",
"@vueuse/core": "^9.13.0",
"axios": "^1.3.4",
"echarts": "^5.4.1",
"element-plus": "^2.3.0",
"long": "^5.2.1",
"pinia": "^2.0.33",
"protobufjs": "^7.2.2",
"sass": "^1.59.3",
"vue": "^3.2.47",
"vue-echarts": "^6.5.4",
"vue-i18n": "^9.2.2",
"vue-virtual-scroll-grid": "^1.10.1"
},
"devDependencies": {
"@types/node": "^18.15.3",
"@vitejs/plugin-vue": "^4.1.0",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.15.1",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.2.0",
"vitest": "^0.29.8",
"vue-tsc": "^1.2.0"
},
"prettier": {
"tabWidth": 4,
"printWidth": 80
}
}