-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
{
"name": "template",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"test": "jest",
"test:e2e": "playwright test",
"dbMigrate": "prisma migrate dev",
"dbDeploy": "prisma migrate deploy",
"local-ssl": "local-ssl-proxy --source 3001 --target 3000"
},
"dependencies": {
"@fontsource/outfit": "^4.5.10",
"@next-auth/prisma-adapter": "^1.0.4",
"@prisma/client": "^4.1.0",
"@splinetool/react-spline": "^2.2.3",
"@splinetool/runtime": "^0.9.116",
"@tanstack/react-query": "^4.3.9",
"@trpc/client": "10.0.0-proxy-beta.2",
"@trpc/next": "10.0.0-proxy-beta.2",
"@trpc/react": "10.0.0-proxy-beta.2",
"@trpc/server": "10.0.0-proxy-beta.2",
"next": "12.3.1",
"next-auth": "^4.10.2",
"next-superjson": "^0.0.4",
"nodemailer": "^6.7.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"superjson": "1.9.1",
"zod": "^3.18.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@playwright/test": "^1.26.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.3",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"autoprefixer": "^10.4.7",
"eslint": "8.22.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "12.3.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"next-superjson-plugin": "^0.4.2",
"postcss": "^8.4.14",
"prisma": "^4.1.0",
"tailwindcss": "^3.1.6",
"ts-jest": "^29.0.1",
"ts-node-dev": "^2.0.0",
"typescript": "4.7.4"
}
}