generated from yoangau/react-redux-toolkit-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.71 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "geosense",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.1.4",
"@emotion/styled": "^11.0.0",
"@fontsource/roboto-mono": "^4.1.0",
"@geist-ui/react": "^2.1.0-canary.2",
"@geist-ui/react-icons": "^1.0.1",
"apisauce": "^2.0.1",
"d3-geo": "^2.0.1",
"d3-geo-projection": "^3.0.0",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-color": "^2.19.3",
"react-dom": "^17.0.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"recoil": "^0.1.3",
"socket.io-client": "<3.0.0",
"topojson-client": "^3.1.0",
"topojson-simplify": "^3.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"format": "npm-run-all format:*",
"format:json": "prettier --write '**/*.json'",
"format:md": "prettier --write '**/*.md'",
"format:ts": "prettier --write '**/*.ts{,x}'",
"format:html": "prettier --write '**/*.html{,x}'",
"lint": "eslint . --fix --ext .js,.ts,.tsx,.md,.json"
},
"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": {
"@types/d3-geo": "^2.0.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.19",
"@types/react": "^17.0.0",
"@types/react-color": "^3.0.4",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/socket.io-client": "^1.4.36",
"@types/topojson-client": "^3.0.0",
"@types/topojson-simplify": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"react-scripts": "^4.0.1",
"typescript": "^4.1.3"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": false,
"trailingComma": "all",
"arrowParens": "avoid",
"endOfLine": "auto"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,md,json,html,css}": [
"yarn prettier --check .",
"eslint --cache --fix"
]
}
}