-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
62
{
"name": "recipes",
"private": true,
"scripts": {
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "./node_modules/.bin/eslint **/*.js* ./"
},
"dependencies": {
"@material-ui/core": "^3.1.1",
"@material-ui/icons": "^3.0.1",
"@rails/webpacker": "4.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"humps": "^2.0.1",
"idempotent-babel-polyfill": "^7.0.0",
"lodash": "^4.17.10",
"prop-types": "^15.6.1",
"query-string": "^6.1.0",
"react": "^16.12.0",
"react-dom": "^16.3.2",
"react-hot-loader": "^4.2.0",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.2.2",
"react-select": "^2.1.1",
"react-widgets": "^4.4.11",
"redux": "^4.0.0",
"redux-form": "^7.3.0",
"redux-saga": "^0.16.0",
"styled-components": "^3.2.6",
"superagent": "^3.8.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-loader": "^8.0.6",
"babel-preset-env": "^1.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"jest": "^22.4.4",
"jest-enzyme": "^6.0.0",
"regenerator-runtime": "^0.11.1",
"webpack-dev-server": "3.10.3"
},
"jest": {
"roots": [
"test/javascript"
],
"moduleDirectories": [
"node_modules",
"app/javascript"
],
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js"
}
}