forked from piyushchauhan2011/nuxt-with-jest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 822 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
{
"name": "dynamic-components-nuxt-with-jest",
"version": "1.0.0",
"dependencies": {
"nuxt": "latest",
"vue": "^2.4.2",
"vue-server-renderer": "^2.4.2"
},
"license": "MIT",
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/jest-vue-preprocessor"
}
},
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt",
"test": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^20.0.2",
"avoriaz": "^2.4.3",
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"jest": "^20.0.4",
"jest-vue-preprocessor": "^1.0.1"
}
}