-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
35 lines (35 loc) · 881 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
{
"name": "vue-clean-architecture",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview",
"test:unit": "jest"
},
"dependencies": {
"inversify": "^5.0.5",
"inversify-inject-decorators": "^3.1.0",
"purify-ts": "^0.16.2",
"reflect-metadata": "^0.1.13",
"vue": "^3.0.5",
"vuex": "^4.0.0",
"vuex-module-decorators": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@vitejs/plugin-vue": "^1.2.1",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.6",
"autoprefixer": "^10.2.5",
"jest": "^26.6.3",
"postcss": "^8.2.10",
"tailwindcss": "^2.1.1",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"typescript": "^4.1.3",
"vite": "^2.1.5",
"vue-jest": "^5.0.0-alpha.9",
"vue-tsc": "^0.0.24"
}
}