-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1000 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1000 Bytes
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
{
"dependencies": {
"@rails/webpacker": "4.2.2",
"axios": "^0.21.1",
"bootstrap-vue": "^2.21.2",
"element-ui": "^2.13.0",
"vue": "^2.6.11",
"vue-loader": "^15.8.3",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-preset-es2015": "^6.24.1",
"jest": "^24.9.0",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"vue-jest": "^3.0.5",
"webpack-dev-server": "^3.10.1"
},
"scripts": {
"test": "jest"
},
"jest": {
"roots": [
"spec/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
}
}