-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "rails-react",
"private": true,
"dependencies": {
"@rails/webpacker": "^3.0.2",
"babel-preset-react": "^6.24.1",
"coffeescript": "1.12.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"babel-jest": "^21.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.6.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"jest": "^21.2.1",
"react-test-renderer": "^16.2.0",
"webpack-dev-server": "^2.9.5"
},
"scripts": {
"build": "webpack --progress -d",
"test": "jest test --env=jsdom --setupTestFrameworkScriptFile=raf/polyfill",
"lint": "eslint -c .eslintrc 'app/javascript/packs/**/*'"
},
"jest": {
"roots": [
"<rootDir>/app/javascript/packs"
],
"moduleDirectories": [
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"jsx"
]
}
}