-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.89 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
{
"name": "biergit-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@auth0/auth0-spa-js": "^1.13.5",
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.39",
"@material-ui/styles": "^4.11.2",
"@types/react-swipeable-views": "^0.13.0",
"axios": "^0.21.1",
"clsx": "^1.0.4",
"cross-env": "^6.0.3",
"http-proxy-middleware": "^0.20.0",
"i18next": "^19.0.3",
"i18next-browser-languagedetector": "^4.0.1",
"i18next-xhr-backend": "^3.2.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-i18next": "^11.8.4",
"react-json-view": "^1.19.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"react-swipeable-views": "^0.13.9",
"typescript": "4.1.3"
},
"scripts": {
"start": "react-scripts start",
"local": "cross-env REACT_APP_BACKEND_API_PREFIX=/local HTTPS=false yarn start",
"api": "json-server --watch db.json --routes routes.json --port 8080",
"dev": "run-p api start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" --quiet --fix",
"eject": "react-scripts eject",
"ci:lint": "tsc --noEmit && eslint \"*/**/*.{js,ts,tsx}\" --quiet",
"ci:test": "react-scripts test",
"ci:build": "react-scripts build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"engines": {
"node": ">=10"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"npm-run-all": "^4.1.5",
"web-vitals": "^1.0.1"
}
}