forked from mxstbr/pokedex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1021 Bytes
/
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
{
"name": "pokedex",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build"
},
"dependencies": {
"@nice-boys/components": "^0.2.1",
"@primer/components": "^15.1.1",
"@styled-system/prop-types": "^5.1.5",
"pokeapi-js-wrapper": "^1.1.2",
"react": "0.0.0-experimental-33c3af284",
"react-dom": "0.0.0-experimental-33c3af284",
"react-scripts": "3.2.0",
"styled-components": "^5.0.0-rc.2"
},
"devDependencies": {
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.{css,json,md,mdx}": [
"prettier --write",
"git add"
]
}
}