-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "webdevscom",
"version": "1.0.0",
"type": "commonjs",
"private": true,
"homepage": "https://webDevsCom.github.io",
"dependencies": {
"@progress/kendo-drawing": "^1.7.0",
"@progress/kendo-react-pdf": "^3.14.0",
"axios": "^0.19.2",
"bulma": "^0.8.2",
"eslint": "^8.4.1",
"github-slugger": "^1.3.0",
"highlight.js": "^10.0.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-github-btn": "^1.2.0",
"react-hotjar": "^2.2.1",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.4.1",
"react-tooltip": "^4.2.6"
},
"scripts": {
"start": "react-scripts start",
"build": "SKIP_PREFLIGHT_CHECK=true react-scripts build && cp build/index.html build/404.html",
"eject": "react-scripts eject",
"netlify": "npm run build && netlify deploy --dir build && netlify deploy --prod --dir build",
"deploy": "npm run netlify",
"lint:test": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"prettier": "prettier src/**/*.{js, jsx} --write",
"precommit": "npm run lint:fix && npm run prettier",
"prepush": "npm run lint:test",
"prepare": "husky install"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1"
}
}