-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
110 lines (110 loc) · 3.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "pinia-starter-ts",
"description": "🪁 A Vue 3.x Starter template built on Vite 5.x + TypeScript + Pinia@next 🍍 + ESLint(v9)",
"version": "0.0.2",
"author": "Wisdom <[email protected]>",
"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": "jest",
"test:coverage": "jest --coverage",
"stylelint": "stylelint .scss, .vue ./src",
"stylelint:fix": "stylelint --fix .scss, .vue ./src"
},
"engines": {
"node": ">= 16.15.x",
"pnpm": ">= 8.14.x"
},
"keywords": [
"vue",
"vue3",
"vue-next",
"pinia",
"vite",
"jest",
"vue3-jest",
"typescript",
"admin",
"example",
"template",
"dashboard",
"framework",
"prototyping",
"element-plus",
"admin-template"
],
"homepage": "https://github.com/pdsuwwz/pinia-starter-ts",
"repository": {
"type": "git",
"url": "git+https://github.com/pdsuwwz/pinia-starter-ts"
},
"bugs": {
"url": "https://github.com/pdsuwwz/pinia-starter-ts/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.4",
"echarts": "^5.5.1",
"element-plus": "2.8.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"nprogress": "^0.2.0",
"pinia": "^2.2.2",
"vue": "^3.4.38",
"vue-router": "^4.4.3"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@eslint/js": "^9.9.0",
"@stylistic/eslint-plugin": "^2.6.4",
"@stylistic/stylelint-plugin": "^3.0.0",
"@sucrase/jest-plugin": "^3.0.0",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/lodash": "^4.17.7",
"@types/node": "^22.3.0",
"@types/nprogress": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-vue": "^5.1.2",
"@vue/compiler-sfc": "^3.4.38",
"@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.9.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-html": "8.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.9.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.20.0",
"sass": "1.77.8",
"stylelint": "^16.8.2",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"sucrase": "^3.35.0",
"ts-jest": "29.2.4",
"typescript": "^5.5.4",
"vite": "^5.4.1"
}
}