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
62
63
64
65
66
67
|
{
"name": "stif-boiv",
"dependencies": {
"@rails/webpacker": "3.2.0",
"babel-jest": "22.0.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "8.0.0",
"bootstrap": "3",
"clean-webpack-plugin": "^0.1.18",
"coffee-loader": "^0.9.0",
"coffeescript": "1.12.7",
"es6-symbol": "^3.1.1",
"jquery": "3.2.1",
"lodash": "4.17.4",
"polyfill-array-includes": "^1.0.0",
"promise-polyfill": "7.0.0",
"prop-types": "^15.6.0",
"react": "16.2.0",
"react-dom": "16.2.0",
"react-redux": "5.0.6",
"react-select2-wrapper": "^1.0.4-beta5",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-promise": "0.5.3",
"redux-thunk": "2.2.0",
"uglify-js": "3.3.2",
"whatwg-fetch": "^2.0.4",
"ssri": "~> 5.2.2",
"hoek": "~> 4.2.1"
},
"license": "MIT",
"engines": {
"node": "^6.12.3"
},
"devDependencies": {
"es6-object-assign": "1.1.0",
"grunt": "^1.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-watch-change": "^0.1.1",
"jest": "22.0.4",
"jest-context": "^2.1.0",
"jest-environment-jsdom-global": "^1.0.2",
"jest-set": "^2.0.0",
"react-addons-test-utils": "15.6.2",
"react-test-renderer": "^16.2.0",
"sinon": "4.1.3",
"webpack-dev-server": "2.9.7"
},
"jest": {
"testRegex": "(/test/.*|(\\_|/)spec)\\.js$",
"roots": [
"<rootDir>/spec/javascript"
],
"transform": {
"^.+\\.coffee$": "<rootDir>/spec/javascript/preprocessor.js",
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironment": "jest-environment-jsdom-global",
"setupFiles": [
"<rootDir>/spec/javascript/spec_helper.js",
"jest-context/setup",
"jest-set/setup"
]
}
}
|