-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.65 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
{
"name": "vue3-vite-starter",
"version": "0.0.2",
"scripts": {
"dev": "vite --mode=mock",
"start": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:unit:run": "vitest run --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit",
"lint": "eslint --fix",
"release": "standard-version"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"axios": "1.4.0",
"element-plus": "2.3.9",
"lodash": "4.17.21",
"pinia": "2.1.6",
"uuid": "9.0.0",
"vue": "3.3.4",
"vue-router": "4.2.4"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@suger-tdy/eslint-config": "1.1.14",
"@types/jsdom": "21.1.1",
"@types/lodash": "4.14.197",
"@types/node": "18.17.7",
"@types/uuid": "9.0.2",
"@vitejs/plugin-vue": "4.3.3",
"@vitejs/plugin-vue-jsx": "3.0.2",
"@vue/test-utils": "2.4.1",
"@vue/tsconfig": "0.4.0",
"cypress": "12.17.4",
"eslint": "8.47.0",
"eslint-plugin-cypress": "2.14.0",
"husky": "8.0.3",
"jsdom": "22.1.0",
"mockjs": "1.1.0",
"sass": "1.66.1",
"standard-version": "9.5.0",
"start-server-and-test": "2.0.0",
"typescript": "5.1.6",
"unplugin-auto-import": "0.16.6",
"unplugin-mock": "1.0.3",
"unplugin-vue-components": "0.25.1",
"vite": "4.4.9",
"vitest": "0.34.2",
"vue-tsc": "1.8.8"
}
}