-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 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
{
"name": "next-start",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:push:drizzle": "dotenv -e .env.local yarn drizzle-kit push",
"db:push": "dotenv -e .env.local yarn prisma db push",
"db:pull": "dotenv -e .env.local yarn prisma db pull",
"db:studio": "dotenv -e .env.local yarn prisma studio",
"test": "jest"
},
"dependencies": {
"@auth/prisma-adapter": "^2.4.1",
"@casl/ability": "^6.7.1",
"@casl/prisma": "^1.4.1",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@chakra-ui/system": "^2.6.2",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11",
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/adapter-pg": "^5.15.1",
"@prisma/client": "^5.18.0",
"@tanstack/react-query": "^5.52.3",
"@tanstack/react-query-devtools": "^5.51.3",
"@tanstack/react-table": "^8.19.3",
"@testing-library/dom": "^10.3.2",
"arctic": "^1.9.1",
"axios": "^1.7.2",
"chakra-react-select": "^4.9.1",
"framer-motion": "^6",
"immer": "^10.1.1",
"inquirer": "^10.0.1",
"jsonwebtoken": "^9.0.2",
"jwt": "^0.2.0",
"lucia": "^3.2.0",
"next": "14.2.4",
"next-client-cookies": "^1.1.1",
"next-safe-action": "^7.1.4-experimental.1",
"nodemailer": "^6.9.14",
"oslo": "^1.2.1",
"pg": "^8.12.0",
"react": "^18",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"reflect-metadata": "^0.2.2",
"typescript-memoize": "^1.1.1",
"uuid": "^10.0.0",
"zod": "^3.23.8",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9",
"@types/node": "^20",
"@types/nodemailer": "^6",
"@types/pg": "^8.11.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.5",
"drizzle-kit": "^0.22.7",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.2",
"prisma": "^5.18.0",
"ts-node": "^10.9.2",
"typescript": "^5",
"yargs": "^17.7.2"
},
"packageManager": "yarn@4.3.1"
}