-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.44 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.44 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
71
72
73
74
{
"name": "luna",
"version": "0.1.0",
"private": true,
"dependencies": {
"@heroui/react": "latest",
"@heroui/use-infinite-scroll": "latest",
"@tabler/icons-react": "^3.11.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"framer-motion": "^11",
"immutable": "^4.3.6",
"nighthouse": "^3.0.2",
"react": "^18.3.1",
"react-card-flip": "^1.2.3",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.0",
"react-router-dom": "^6.25.1",
"react-scripts": "^5.0.1",
"react-stately": "^3.35.0",
"tailwindcss": "^3.4.6",
"typescript": "^4.9.3",
"web-vitals": "^4.2.2"
},
"scripts": {
"start": "craco start",
"start:legacy": "env-cmd -f .env.legacy craco start",
"start:staging-proxy": "env-cmd -f .env.staging-proxy craco start",
"build": "craco build",
"build:development": "env-cmd -f .env.development craco build",
"build:staging": "env-cmd -f .env.staging craco build",
"build:production": "env-cmd -f .env.production craco build",
"test": "craco test",
"eject": "react-scripts eject",
"cors-proxy:staging": "lcp --proxyUrl https://lighthouse01.uni-kiel.de --proxyPartial '' --credentials --origin http://localhost:4000",
"cors-proxy:legacy": "lcp --proxyUrl https://lighthouse.uni-kiel.de --proxyPartial '' --credentials --origin http://localhost:4000",
"regenerate-api-types": "swagger-typescript-api -p https://lighthouse01.uni-kiel.de/api/swagger/doc.json -o src/contexts/api/auth -n generated.ts",
"update-browserslist": "npx update-browserslist-db@latest"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"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/plugin-proposal-private-property-in-object": "^7.21.11",
"@craco/craco": "^7.1.0",
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"env-cmd": "^10.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.37.1",
"local-cors-proxy": "^1.1.0",
"prettier": "^3.0.2",
"swagger-typescript-api": "^13.0.22"
}
}