-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.04 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
{
"name": "rancid-tomato",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"_dev": "next dev",
"dev": "pnpm dev:default",
"dev:local": "pnpm switch:local && pnpm dev:local_infra && pnpm _dev",
"dev:default": "pnpm switch:default && pnpm dev:local_infra && pnpm _dev",
"postinstall": "prisma generate",
"lint": "next lint",
"start": "next start",
"db:migrate": "prisma generate && prisma db push",
"dev:local_infra": "pnpm switch:local && pnpm db:migrate && docker-compose -f docker-compose.local.yml up -d",
"switch:local": "cp secrets/.env.local .env",
"switch:default": "cp secrets/.env.default .env ",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.5",
"@prisma/client": "^4.5.0",
"@tanstack/react-query": "^4.13.4",
"@trpc/client": "10.0.0-rc.1",
"@trpc/next": "10.0.0-rc.1",
"@trpc/react-query": "10.0.0-rc.1",
"@trpc/server": "10.0.0-rc.1",
"class-variance-authority": "^0.2.4",
"next": "13.0.0",
"next-auth": "^4.15.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-zorm": "^0.6.1",
"superjson": "1.9.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.1",
"@types/node": "18.0.0",
"@types/react": "18.0.14",
"@types/react-dom": "18.0.5",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.2.2",
"eslint": "8.22.0",
"eslint-config-next": "13.0.0",
"jest": "^29.2.2",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.5.0",
"tailwindcss": "^3.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"ct3aMetadata": {
"initVersion": "6.6.0"
}
}