-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.81 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
70
71
72
73
74
{
"name": "travel",
"private": true,
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"lint": "node_modules/.bin/standard"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"node_modules/.bin/standard --fix"
],
"*.{rb,rake}": [
"standardrb --fix"
]
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"@babel/core": "^7.13.14",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@rails/ujs": "^6.1.3",
"@rails/webpacker": "^5.2.1",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"browserslist": "^4.16.3",
"core-js": "3",
"jquery": "^3.6.0",
"mapbox-gl": "^2.2.0",
"normalize.css": "^8.0.1",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.6.0",
"prop-types": "^15.7.2",
"react": "^16.14.0",
"react-dom": "^16.8.2",
"react_ujs": "^2.4.3",
"regenerator-runtime": "^0.13.7",
"trix": "^1.3.1",
"webpack-merge": "^5.7.3",
"webpacker-react": "^0.3.2",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-transform-react-jsx": "^7.13.12",
"babel-jest": "^26.6.3",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"react-test-renderer": "^16.8.2",
"sinon": "^10.0.0",
"standard": "*",
"webpack": "^4.44.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": ">=3.11.2"
}
}