-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.66 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "neck-group-project",
"private": true,
"engines": {
"node": ">=6.0.0",
"yarn": ">=0.25.2"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-transform-destructuring": "^7.6.0",
"@babel/plugin-transform-regenerator": "^7.4.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.6.2",
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@rails/webpacker": "3.5",
"babel-loader": "^8.0.6",
"humps": "^2.0.1",
"lodash": "^4.17.15",
"prop-types": "~15.6.0",
"react": "~16.8.0",
"react-dom": "~16.8.0",
"react-router-dom": "5.0.0",
"redbox-react": "1.6.0"
},
"devDependencies": {
"babel-jest": "^24.9.0",
"enzyme": "~3.10.0",
"enzyme-adapter-react-16": "~1.14.0",
"fetch-mock": "~5.13.1",
"jest": "^24.9.0",
"webpack-cli": "^2.0.10",
"webpack-dev-server": "^2.11.1"
},
"scripts": {
"start": "./bin/webpack-dev-server",
"test": "node_modules/.bin/jest",
"test:dev": "node_modules/.bin/jest --notify --watch"
},
"jest": {
"automock": false,
"roots": [
"spec/javascript",
"app/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"setupFiles": [
"./spec/javascript/support/enzyme.js"
],
"testURL": "http://localhost/"
}
}