-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 975 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 975 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
35
36
37
38
{
"name": "testing-web",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "vite --mode development --debug",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@types/crypto-js": "^4.2.1",
"crypto-js": "^4.2.0",
"element-plus": "^2.4.3",
"mockjs": "^1.1.0",
"normalize.css": "^8.0.1",
"unplugin-auto-import": "^0.16.7",
"unplugin-vue-components": "^0.25.2",
"vite-plugin-svg-icons": "^2.0.1",
"vite-plugin-vue-setup-extend": "^0.4.0",
"vue": "^3.3.9",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.1",
"@vitejs/plugin-vue": "^4.5.0",
"eslint": "^8.54.0",
"gh-pages": "^6.1.0",
"sass": "^1.69.5",
"typescript": "^5.3.2",
"vite": "^4.5.0",
"vue-tsc": "^1.8.24"
}
}