-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "archive.prove.email",
"version": "0.1.0",
"license": "MIT",
"private": true,
"engines": {
"node": ">=v22.2.0"
},
"scripts": {
"dev": "next dev",
"build": "prisma generate --generator client_js && prisma migrate deploy && next build",
"start": "next start",
"preinstall": "npx only-allow pnpm",
"check-types": "tsc --noEmit",
"lint": "next lint"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/material": "^5.15.19",
"@prisma/client": "5.11.0",
"@witnessco/client": "^0.4.2",
"axios": "^1.7.2",
"googleapis": "^137.1.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "14.2.3",
"next-auth": "^4.24.7",
"rate-limiter-flexible": "^5.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.10.2",
"viem": "^2.13.1",
"zod": "^3.23.8"
},
"//": "prisma 5.11.0 needed for Prisma Client Python",
"devDependencies": {
"@types/lodash": "^4.17.10",
"@types/node": "^20.12.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/swagger-ui-react": "^4.18.3",
"autoprefixer": "^10.4.19",
"dkim": "^0.8.0",
"postcss": "^8.4.38",
"prisma": "5.11.0",
"swagger-ui-react": "^5.17.14",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}