-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 865 Bytes
/
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
{
"name": "vue-tdd",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest --watch --reporter dot",
"coverage": "vitest run --coverage"
},
"dependencies": {
"axios": "^1.6.0",
"vue": "^3.3.4",
"vue-i18n": "^9.7.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.0",
"@vue/test-utils": "^2.4.2",
"core-js": "^3.33.2",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"jsdom": "^22.1.0",
"msw": "^2.0.8",
"npm": "^10.2.3",
"prettier": "^3.0.3",
"vite": "^5.0.0",
"vitest": "^0.34.6",
"vue-router-mock": "^1.0.0"
},
"volta": {
"node": "18.18.1"
}
}