-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
63
64
65
66
67
68
69
{
"name": "skill_tree",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.0.0",
"@rails/webpacker": "^4.0.7",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^6.1.0",
"eslint-config-jest-enzyme": "^7.0.2",
"eslint-config-prettier": "^6.0.0",
"eslint-config-zeal": "^1.9.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-import-order-alphabetical": "^0.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-router-dom": "^5.0.1",
"react_ujs": "^2.5.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"add": "^2.0.6",
"eslint-plugin-jest": "^22.13.6",
"husky": "^3.0.0",
"jest": "^24.8.0",
"prettier": "1.18.2",
"pretty-quick": "^1.11.1",
"react-test-renderer": "^16.8.6",
"webpack-dev-server": "^3.7.2",
"yarn": "^1.17.3"
},
"eslintConfig": {
"extends": [
"zeal",
"zeal/react",
"prettier",
"prettier/react",
"jest-enzyme"
],
"plugins": [
"jest"
],
"settings": {
"import/resolver": "webpack"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|sass)$": "<rootDir>/__mocks__/styleMock.js"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}