forked from bigbinary/wheel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"scripts": {
"precommit": "lint-staged"
},
"lint-staged": {
"app/**/*.{html,md,js,jsx,json,yml}": [
"prettier --write",
"eslint --fix",
"git add"
],
"{app,test}/**/*.rb": [
"bundle exec rubocop -a",
"git add"
],
"Gemfile": [
"bundle exec rubocop -a",
"git add"
]
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^0.14.3",
"lint-staged": "^4.1.0",
"prettier": "^1.6.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/preset-react": "^7.10.4",
"@rails/webpacker": "4.3.0",
"axios": "^0.20.0",
"babel-plugin-js-logger": "^1.0.17",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-preset-react": "^6.24.1",
"classnames": "^2.2.6",
"core-js": "3",
"formik": "^2.2.0",
"js-logger": "^1.6.0",
"nitroui": "https://github.com/bigbinary/nitroui.git",
"postcss-cssnext": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-router-nav-prompt": "^0.4.0",
"react-toastify": "^6.0.9",
"react_ujs": "^2.6.1",
"tailwindcss": "^1.6.0",
"yup": "^0.29.3"
}
}