-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 KB
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
{
"name": "gallery",
"private": true,
"dependencies": {
"@rails/webpacker": "^3.2.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-runtime": "^6.26.0",
"coffeescript": "1.12.7",
"immutable": "^3.8.2",
"jest-css-modules": "^1.1.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-on-rails": "^10.0.2",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.0.6",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^22.0.6",
"jest-enzyme": "^4.0.2",
"regenerator-runtime": "^0.11.1",
"webpack-dev-server": "^2.9.7"
},
"peerDependencies": {
"js-yaml": "^3.10.0"
},
"jest": {
"setupFiles": [
"./spec/js/setup.js"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testMatch": [
"**/spec/**/?(*.)(test|spec).js?(x)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/legacy_notes_and_workbook/",
"<rootDir>/client/src/stylesheets/"
]
}
}