This repository has been archived by the owner on Nov 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.62 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
{
"name": "adb",
"version": "0.1.0",
"private": true,
"dependencies": {
"babel-eslint": "^8.2.1",
"bootstrap": "^4.0.0-beta.3",
"firebase": "^4.9.0",
"jquery": "^3.3.1",
"lodash.chunk": "^4.2.0",
"prop-types": "^15.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.0",
"reactstrap": "^5.0.0-alpha.4",
"xlsx": "^0.11.18"
},
"devDependencies": {
"source-map-explorer": "^1.5.0",
"eslint": "4.10.0",
"eslint-config-airbnb": "15.1.0",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.4.0",
"prettier-eslint": "^8.6.0"
},
"scripts": {
"start": "BROWSER=none react-scripts start",
"build": "react-scripts build",
"analyze": "source-map-explorer build/static/js/main.*",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"deploy-firebase": "firebase deploy",
"deploy": "npm run build && npm run deploy-firebase"
},
"babel": {
"presets": [
"react-app"
]
},
"eslintConfig": {
"root": true,
"extends": "airbnb",
"plugins": [
"react"
],
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"env": {
"es6": true,
"browser": true
},
"rules": {
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
}
}
}