-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.25 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
81
82
{
"name": "smaug",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"pm-generate": "prisma generate",
"pm-studio": "prisma studio",
"pm-db-push": "prisma db push",
"pm-db-seed": "prisma db seed"
},
"engines": {
"node": "18.x"
},
"keywords": [],
"author": "MoonshineVFX",
"license": "MIT",
"dependencies": {
"@emotion/cache": "^11.11.0",
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.5",
"@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.3",
"@paralleldrive/cuid2": "^2.2.1",
"@prisma/client": "^5.2.0",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-query-devtools": "^4.35.3",
"@trpc/client": "^10.38.2",
"@trpc/next": "^10.38.2",
"@trpc/react-query": "^10.38.2",
"@trpc/server": "^10.38.2",
"@types/bcrypt": "^5.0.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.2",
"cookie": "^0.5.0",
"cookies": "^0.8.0",
"follow-redirects": "^1.15.3",
"install": "^0.13.0",
"joi": "^17.9.2",
"multer": "^1.4.3",
"next": "^13.4.12",
"next-connect": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"recoil": "^0.7.7",
"superjson": "^1.13.1",
"swiper": "^11.0.5",
"swr": "^2.2.0",
"zod": "^3.22.2"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/cookie": "^0.5.1",
"@types/follow-redirects": "^1.14.2",
"@types/multer": "^1.4.3",
"@types/node": "20.4.5",
"@types/react": "^18.2.18",
"@types/testing-library__jest-dom": "^5.14.9",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jest-mock-extended": "^3.0.4",
"node-mocks-http": "^1.12.2",
"prisma": "^5.2.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
}
}