-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.58 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "vite-pinia-starter",
"description": "🐝 Starter Example using Vue 3.x, Vite 5.x and Pinia@next 🍍",
"version": "0.0.1",
"author": "Wisdom <pdsu.wwz@foxmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"deploy:gh-pages": "cross-env VITE_ROUTER_MODE=hash pnpm build",
"preview": "vite preview --host",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"engines": {
"node": ">=18.12.0",
"pnpm": ">= 9.x"
},
"keywords": [
"vue",
"vue3",
"vue-next",
"pinia",
"vite",
"jest",
"vue3-jest",
"admin",
"example",
"template",
"dashboard",
"framework",
"prototyping",
"element-plus",
"admin-template"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/vite-pinia-starter"
},
"bugs": {
"url": "https://github.com/pdsuwwz/vite-pinia-starter/issues"
},
"dependencies": {
"@element-plus/icons-vue": "2.3.1",
"@fortawesome/fontawesome-svg-core": "6.6.0",
"@fortawesome/free-brands-svg-icons": "6.6.0",
"@fortawesome/free-regular-svg-icons": "6.6.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@fortawesome/vue-fontawesome": "~3.0.8",
"axios": "1.7.7",
"echarts": "^5.5.1",
"element-plus": "2.8.3",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.6",
"vue": "^3.5.12",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@stylistic/stylelint-plugin": "^3.1.1",
"@sucrase/jest-plugin": "^3.0.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.4",
"@vue/compiler-sfc": "^3.5.12",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "29.2.6",
"babel-jest": "^29.7.0",
"babel-plugin-transform-vite-meta-env": "^1.0.3",
"cross-env": "^7.0.3",
"eslint": "^9.14.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-vue": "9.30.0",
"globals": "^15.12.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-transform-stub": "^2.0.0",
"rollup": "^4.24.4",
"sass": "1.78.0",
"sucrase": "^3.35.0",
"vite": "^5.4.10",
"vitest": "^2.1.4"
}
}