-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.75 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
{
"name": "gugweb",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"export": "next build && next export",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"lint-prod": "cross-env NODE_ENV=production eslint --ext .js,.jsx . --max-warnings=0"
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@svgr/webpack": "^5.5.0",
"classnames": "^2.3.1",
"dayjs": "^1.11.0",
"next": "12.1.0",
"next-compose-plugins": "^2.2.1",
"prop-types": "^15.7.2",
"ramda": "^0.27.1",
"ramda-adjunct": "^2.35.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-next": "^11.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-webpack-plugin": "^3.0.1",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "2.5.1",
"pretty-quick": "^3.1.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix --quiet"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && lint-staged",
"pre-push": "yarn lint-prod"
}
}
}