-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.61 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
{
"name": "@scaffold-eth/react-app",
"version": "1.1.0",
"homepage": ".",
"browserslist": {
"production": [
">0.2% or last 2 versions",
"not dead"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@material-ui/core": "^4.12.3",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"intl": "^1.2.5",
"node-sass": "^6.0.1",
"node-watch": "^0.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"sass": "^1.35.1",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/node": "^16.7.4",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"@types/react-router-dom": "^5.1.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.0.5"
},
"eslintConfig": {
"extends": "react-app"
},
"scripts": {
"build": "GENERATE_SOURCEMAP=false react-scripts build",
"eject": "react-scripts eject",
"start": "react-scripts start",
"test": "react-scripts test",
"lint": "npx eslint src/ --ext .ts,.js,.tsx,.jsx",
"lint-fix": "npx eslint src/ --ext .ts,.js,.tsx,.jsx --fix"
}
}