-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "granite",
"private": true,
"dependencies": {
"@babel/preset-react": "^7.12.13",
"@rails/actioncable": "^6.0.0",
"@rails/activestorage": "^6.0.0",
"@rails/ujs": "^6.0.0",
"@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",
"classnames": "^2.2.6",
"js-logger": "^1.6.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-select": "^4.1.0",
"react-toastify": "^7.0.3",
"react_ujs": "^2.6.1",
"remixicon": "^2.5.0",
"tailwindcss": "1.9.6"
},
"version": "0.1.0",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-react": "^7.22.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"webpack-dev-server": "^3.11.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"app/**/*.{html,md,js,jsx,json,yml}": [
"prettier --write",
"eslint --fix"
]
}
}