-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"proxy": "https://localhost:5000",
"dependencies": {
"@reduxjs/toolkit": "^1.6.2",
"@rtk-query/codegen-openapi": "^1.0.0-alpha.1",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.20.37",
"@types/react": "^16.14.21",
"@types/react-dom": "^16.9.14",
"@types/react-redux": "^7.1.20",
"react": "^17.0.2",
"react-bootstrap": "^2.1.0",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-scripts": "4.0.3",
"typescript": "~4.1.5"
},
"scripts": {
"start": "set HTTPS=true&&set SSL_CRT_FILE=../instance/certs/server.crt&&set SSL_KEY_FILE=../instance/certs/server.key&&react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"schemas": "npx @rtk-query/codegen-openapi openapi-config.ts",
"old_schemas": "npx openapi-typescript ../models/generated/swagger.json --output ./src/interfaces/backend.ts"
},
"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": {
"openapi-typescript": "^4.4.0",
"ts-node": "^10.4.0"
}
}