-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.44 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
{
"scripts": {
"prepare": "npx husky install"
},
"lint-staged": {
"app/**/*.{html,md,js,jsx,json}": [
"prettier --write",
"eslint --fix",
"git add"
],
"{app,test}/**/*.rb": [
"bundle exec rubocop -a",
"git add"
],
"Gemfile": [
"bundle exec rubocop -a",
"git add"
]
},
"devDependencies": {
"autoprefixer": "^10.2.5",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.2.15",
"prettier": "^2.2.1",
"tailwindcss": "^2.1.2",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"@babel/preset-react": "^7.12.7",
"@bigbinary/neetoui": "^1.0.27",
"@rails/webpacker": "5.2.1",
"axios": "^0.21.1",
"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.7.0",
"formik": "^2.2.5",
"js-logger": "^1.6.1",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-router-nav-prompt": "^0.4.0",
"react-toastify": "^6.1.0",
"react_ujs": "^2.6.1",
"yup": "^0.31.0"
}
}