-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.69 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.69 KB
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
{
"name": "case-explorer",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fluentui/react": "^7.161.0",
"@fluentui/react-hooks": "^8.2.6",
"@fluentui/react-icons": "^1.1.137",
"ag-grid-community": "^26.1.0",
"ag-grid-enterprise": "^26.1.0",
"ag-grid-react": "^26.1.0",
"aws-amplify": "^1.3.3",
"aws-amplify-react": "^2.6.3",
"graphiql": "^0.14.2",
"react": "^16.14.0",
"react-app-polyfill": "^1.0.6",
"react-cookie": "^4.1.1",
"react-dom": "^16.14.0",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.1.1",
"swagger-ui-react": "^3.52.3"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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": {
"babel-eslint": "10.0.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"react-codemod": "^5.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"proxy": "http://api:5000"
}