-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "service-dashboard-hecate",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint .",
"format": "biome format --write .",
"generate:graphql": "tsx scripts/graphqlTypes.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"dependencies": {
"@auth/pg-adapter": "^1.5.0",
"@heroicons/react": "^2.1.5",
"@tanstack/react-query": "^5.56.2",
"cookie-signature": "^1.2.1",
"graphql": "^16.9.0",
"graphql-request": "^7.1.0",
"jose": "^5.9.3",
"lodash-es": "^4.17.21",
"next": "14.2.13",
"next-auth": "^4.24.7",
"next-seo": "^6.6.0",
"nodemailer": "^6.9.15",
"pg": "^8.13.0",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.53.0",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/cookie-signature": "^1.1.2",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22",
"@types/nodemailer": "^6.4.16",
"@types/pg": "^8.11.10",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.1",
"date-fns": "^4.1.0",
"dotenv": "^16.4.5",
"jsdom": "^25.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.13",
"tsx": "^4.19.1",
"typescript": "^5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
}
}