-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.41 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": "egress-webapp",
"version": "0.1.0",
"author": {
"name": "AWS Professional Services",
"url": "https://aws.amazon.com/professional-services/"
},
"private": true,
"dependencies": {
"@aws-amplify/ui-react": "^1.2.26",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.3",
"@mui/icons-material": "^5.14.1",
"@mui/material": "^5.14.2",
"aws-amplify": "^4.3.46",
"bootstrap-css-only": "4.4.1",
"env-cmd": "^10.1.0",
"mdbreact": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1"
},
"scripts": {
"start:local": "env-cmd -f .env.local react-scripts start",
"update-version": "node git-version.js",
"start": "npm run update-version && react-scripts start",
"build": "npm run update-version && react-scripts build",
"test": "npm run update-version && react-scripts test",
"eject": "react-scripts eject",
"security-tests": "npm run security:outdated && npm run security:audit",
"security:audit": "npm audit || true",
"security:outdated": "npm outdated || true",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prettier": "prettier ./src --check",
"prettier:fix": "prettier ./src --write",
"pipeline": "npm run lint && npm run prettier && npm run security-tests"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:react-hooks/recommended"
]
},
"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-parser": "7.22.9",
"@babel/preset-react": "7.22.5",
"eslint": "8.45.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "5.0.0",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-react-hooks": "4.6.0",
"prettier": "3.0.0"
}
}