This repository was archived by the owner on Feb 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "job-search-portal",
"description": "Ionic application for job search portal",
"private": true,
"version": "1.32.0",
"type": "module",
"scripts": {
"predev": "npm install",
"dev": "vite",
"build": "tsc && vite build",
"build-server": "esbuild src/server/index.ts --bundle --platform=node --outdir=dist",
"preview": "vite preview",
"test.unit": "vitest",
"lint": "DEBUG=eslint:cli-engine eslint --fix .",
"prettier": "prettier --write --ignore-unknown .",
"release": "semantic-release",
"dev:server": "tsx watch src/server",
"db:generate": "prisma generate",
"db:migrate-dev": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:studio": "prisma studio",
"db:push": "prisma db push"
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@capacitor/app": "^6.0.0",
"@capacitor/browser": "^6.0.1",
"@capacitor/core": "^6.1.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.1.0",
"@capacitor/keyboard": "^6.0.1",
"@capacitor/status-bar": "^6.0.0",
"@ionic/react": "^7.8.6",
"@ionic/react-router": "^7.8.6",
"@prisma/client": "^5.16.1",
"@tanstack/react-query": "^5.50.1",
"@tanstack/react-query-devtools": "^5.50.1",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"auth0": "^4.6.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^8.0.0",
"ionicons": "^7.4.0",
"lottie-react": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^14.1.2",
"react-router": "^5.3.4",
"react-router-dom": "^5.3.4",
"superjson": "^2.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@boehringer-ingelheim/eslint-config": "^5.0.1",
"@boehringer-ingelheim/prettier-config": "^2.0.0",
"@capacitor/cli": "^6.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/dom": ">=10.3.1",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/auth0": "^3.3.10",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-legacy": "^5.4.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.3",
"jsdom": "^24.1.0",
"prettier": "^3.3.2",
"prisma": "^5.16.1",
"semantic-release": "^24.0.0",
"terser": "^5.31.1",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.4.6",
"vite-plugin-pwa": "^0.20.0",
"vitest": "^1.6.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.18.0"
}
}