-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 947 Bytes
/
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
{
"scripts": {
"watch": "esbuild --watch ./src/core/index.ts --watch --bundle --platform=node --outdir=build",
"serve": "nodemon build/index.js",
"start": "node build/index.js",
"dev": "vite",
"build": "vite build",
"test": "vitest tests/split.test.js",
"test-ui": "vitest --ui"
},
"dependencies": {
"@element-plus/icons-vue": "^2.0.6",
"axios": "^0.27.2",
"element-plus": "^2.2.9",
"esbuild": "^0.14.49",
"lodash": "^4.17.21",
"unplugin-auto-import": "^0.9.3",
"unplugin-vue-components": "^0.21.1",
"vite": "^3.0.0",
"vite-svg-loader": "^3.4.0",
"vitest": "^0.18.0",
"vue": "^3.2.37",
"vue-highlight-code": "^0.1.16"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.0.4",
"@vitejs/plugin-vue": "^3.0.0",
"@vitest/ui": "^0.18.0",
"nodemon": "^2.0.19",
"sass": "^1.53.0"
}
}