forked from ATQQ/easypicker2-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.96 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@sugarat/easypicker2-client",
"version": "2.7.1",
"files": [
"dist",
"package.json"
],
"scripts": {
"dev": "vite",
"dev:test": "cross-env VITE_APP_AXIOS_BASE_URL=/api-test/ vite --mode test",
"build": "vite build",
"build:test": "cross-env VITE_APP_AXIOS_BASE_URL=/api-test/ vite build --mode test",
"serve": "vite preview",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:deploy": "zx scripts/deploy/docs.mjs",
"deploy:prod": "zx scripts/deploy/prod.mjs",
"deploy:test": "zx scripts/deploy/test.mjs",
"upload:oss": "pnpm build && q ep client -up",
"update:version": "npm version prerelease --preid=beta --no-git-tag-version",
"preinstall": "npm config set registry https://registry.npmmirror.com/",
"postinstall": "npx simple-git-hooks",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@element-plus/icons-vue": "^1.1.4",
"@sugarat/theme": "^0.5.1",
"@vueuse/core": "^10.11.0",
"axios": "^0.27.2",
"clipboard-copy": "^4.0.1",
"element-plus": "2.2.13",
"spark-md5": "^3.0.2",
"vitepress": "1.4.1",
"vitepress-plugin-51la": "^0.1.0",
"vue": "^3.4.31",
"vue-json-viewer": "^3.0.4",
"vue-router": "^4.4.0",
"vuex": "^4.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.2",
"@types/node": "20",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-vue": "^5.0.5",
"cross-env": "^7.0.3",
"eslint": "^9.6.0",
"lint-staged": "^15.2.7",
"pagefind": "^1.1.0",
"sass": "^1.64.1",
"simple-git-hooks": "^2.11.1",
"terser": "^5.19.2",
"typescript": "^4.9.5",
"unplugin-auto-import": "^0.6.9",
"unplugin-element-plus": "^0.4.1",
"unplugin-vue-components": "^0.27.2",
"vite": "^5.3.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}