-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "auth",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prisma": "prisma",
"postinstall": "prisma generate",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@libsql/client": "^0.8.1",
"@prisma/adapter-d1": "^7.4.0",
"@prisma/adapter-libsql": "^7.2.0",
"@prisma/adapter-pg": "^7.3.0",
"@prisma/client": "^7.2.0",
"argon2": "^0.40.3",
"bcryptjs": "^2.4.3",
"libphonenumber-js": "^1.12.8",
"next": "16.1.4",
"pg": "^8.17.2",
"react": "19.2.3",
"react-dom": "19.2.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@cloudflare/next-on-pages": "^1.13.12",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3",
"@types/react-fontawesome": "^1.6.8",
"@types/uuid": "^10.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"prisma": "^7.2.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
},
"overrides": {
"@types/react": "19.2.8",
"@types/react-dom": "19.2.3"
}
}