-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1002 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
39
40
41
42
43
44
45
46
{
"name": "webwindows",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:test": "vite build --mode test",
"serve": "vite preview",
"test:unit": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"moment": "^2.29.1",
"vue": "^3.1.1",
"vue-router": "^4.0.5",
"vuex": "^4.0.1"
},
"devDependencies": {
"@babel/preset-env": "^7.14.2",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.169",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.1.1",
"@vue/test-utils": "^2.0.0-rc.6",
"jest": "^26.6.3",
"sass": "^1.32.8",
"ts-jest": "^26.5.2",
"typescript": "^4.1.3",
"vite": "^2.0.5",
"vue-jest": "^5.0.0-alpha.8"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
".+\\.(j|t)sx?$": "ts-jest"
}
}
}