-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.26 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-hooks",
"version": "0.1.0",
"private": true,
"homepage": "https://wkylin.github.io/react-hooks",
"proxy": "http://localhost:3001/",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"analyze": "source-map-explorer 'build/static/js/*.js'",
"lint": "eslint src/**/*.*",
"lint:fix": "eslint --fix src/**/*.*}",
"test:all": "set CI=true && react-scripts test && npm run lint",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"update": "yarn upgrade-interactive --latest",
"ncu": "ncu -u",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"dependencies": {
"axios": "^0.21.2",
"env-cmd": "^10.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.1",
"gh-pages": "^5.0.0",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"query-string": "^7.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-loading-skeleton": "^2.2.0",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.0",
"resize-observer-polyfill": "^1.5.1",
"source-map-explorer": "^2.5.2",
"yargs-parser": "^20.2.7"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-preset-airbnb": "^5.0.0",
"copy-text-to-clipboard": "^3.0.1",
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"import-sort-cli": "^6.0.0",
"import-sort-style-renke": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"uuidv4": "^6.2.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.*": [
"npm run lint",
"prettier --write"
]
}
}