-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.79 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.79 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.6",
"@types/node": "^20.8.8",
"@types/react": "^17.0.24",
"@types/react-dom": "^17.0.0",
"axios": "^0.21.4",
"ra-data-json-server": "^4.13.1",
"ra-data-simple-rest": "^4.13.1",
"react": "^17.0.2",
"react-admin": "^4.13.4",
"react-dom": "^17.0.2",
"react-scripts": "5.0.1",
"typescript": "^5.9.3",
"web-vitals": "^3.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"format": "prettier src --write",
"run-e2e-tests": "cypress run",
"open-e2e-test": "cypress open",
"genapi": "openapi-generator-cli generate -i 'http://localhost:{{ cookiecutter.backend_port }}/api/v1/openapi.json' -g typescript-axios -o src/generated -p withSeparateModelsAndApi=true,apiPackage=api,modelPackage=models,useSingleRequestParameter=true"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:cypress/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": {
"@openapitools/openapi-generator-cli": "^2.18.4",
"@types/react-router": "^5.1.20",
"cypress": "^14.2.0",
"cypress-localstorage-commands": "^2.2.4",
"eslint-plugin-cypress": "^2.14.0",
"prettier": "^3.0.3"
}
}