-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "vite build",
"dev": "vite --port 3334 --open",
"start:api": "cd backend & pnpm run start:api",
"lint": "eslint .",
"type-check": "vue-tsc --noEmit",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "cypress open --browser edge",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@vant/area-data": "^1.3.2",
"axios": "^0.27.2",
"pinia": "^2.0.22",
"vant": "^3.6.1",
"vue": "^3.2.37",
"vue-router": "^4.1.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.25.2",
"@pinia/testing": "^0.0.14",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^6.6.1",
"@types/node": "^18.6.1",
"@vitejs/plugin-vue": "^3.0.1",
"@vitest/coverage-c8": "^0.23.2",
"cypress": "10.6.0",
"eslint": "^8.20.0",
"jsdom": "^20.0.0",
"sass": "^1.54.8",
"typescript": "^4.7.4",
"unplugin-auto-import": "^0.11.2",
"unplugin-vue-components": "^0.22.4",
"vite": "^3.0.3",
"vite-plugin-pages": "^0.25.0",
"vitest": "^0.23.2",
"vue-tsc": "^0.39.0"
},
"eslintConfig": {
"extends": "@antfu"
}
}