forked from hurbcom/challenge-charlie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1018 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
{
"name": "challenge-charlie",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.7.4",
"axios": "^0.19.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-scripts": "^3.3.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint --fix ./src"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"browser": true,
"node": true,
"jest": true
},
"rules": {
"react/prop-types": 0,
"react/jsx-filename-extension": 0,
"react/jsx-one-expression-per-line": 0
}
},
"jest": {
"extraGlobals": [
"navigator"
]
},
"browserslist": [
">1%",
"last 1 version and >0.5%"
],
"devDependencies": {
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0"
}
}