-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 927 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 927 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
{
"name": "vite_vue_starter",
"type": "module",
"version": "1.0.0",
"author": "Erlan Kaparov",
"license": "MIT",
"scripts": {
"serve": "vite",
"build": "vue-tsc && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"pinia": "^2.0.35",
"vue": "^3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@types/node": "^20.8.8",
"@vitejs/plugin-vue": "^4.1.0",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-c8": "^0.33.0",
"@vue/test-utils": "^2.3.2",
"ant-design-vue": "^4.0.6",
"jsdom": "^22.1.0",
"sass": "^1.62.0",
"typescript": "^5.0.2",
"unplugin-vue-components": "^0.25.2",
"vite": "^4.3.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.16.5",
"vitest": "^0.34.6",
"vue-tsc": "^1.2.0"
}
}