-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "jest"
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@vue/test-utils": "^1.3.3",
"axios": "^0.21.4",
"babel-core": "^7.0.0-0",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"jsdom-global": "^3.0.2",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.21",
"postcss": "^8.4.20",
"vue": "^2.7.14",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.7.14"
},
"jest": {
"transform": {
"^.+\\.vue$": "vue-jest",
"^.+\\.js$": "babel-jest"
},
"testEnvironment": "jsdom",
"collectCoverage": true,
"coverageReporters": [
"json", "html"
]
}
}