-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 938 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
{
"name": "atange-vite",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"test:watch": "vitest",
"test": "vitest --run",
"coverage": "vitest run --coverage",
"test:events": "vitest EventService --run",
"test:stores": "vitest Store.test --run",
"test:views": "vitest View.test --run",
"test:notifications": "vitest Notifications.test --run"
},
"dependencies": {
"axios": "^0.27.2",
"happy-dom": "^3.1.0",
"pinia": "^2.0.13",
"slugify": "^1.6.5",
"vue": "^3.2.25",
"vue-i18n": "^9.2.2",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@pinia/testing": "^0.0.11",
"@testing-library/vue": "^6.5.1",
"@vitejs/plugin-vue": "^2.3.1",
"c8": "^7.11.2",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vitest": "^0.10.0",
"vue-tsc": "^0.34.7"
}
}