-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "todovue",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit",
"test:cov": "vitest --coverage",
"test": "vitest",
"test:ui": "vitest --ui",
"format:fix": "prettier -w -c ./src/**/*.{ts,vue,css} ./*.{ts,json,html}",
"format:check": "prettier -c ./src/**/*.{ts,vue,css} ./*.{ts,json,html}",
"cypress:open": "cypress open"
},
"dependencies": {
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"axios": "^0.27.2",
"axios-extensions": "^3.1.3",
"axios-retry": "^3.2.5",
"pinia": "^2.0.14",
"pinia-plugin-persistedstate": "^1.6.1",
"vue": "^3.2.33",
"vue-router": "^4.0.15"
},
"devDependencies": {
"@pinia/testing": "^0.0.12",
"@tailwindcss/forms": "^0.5.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/vue": "^6.6.0",
"@types/node": "^16.11.27",
"@vitejs/plugin-vue": "^2.3.1",
"@vitest/ui": "^0.14.2",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.7",
"c8": "^7.11.3",
"cypress": "^10.4.0",
"happy-dom": "^5.2.0",
"msw": "^0.42.3",
"postcss": "^8.4.13",
"tailwindcss": "^3.0.24",
"typescript": "~4.6.3",
"vite": "^2.9.5",
"vitest": "^0.14.2",
"vue-tsc": "^0.34.7"
}
}