-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.66 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.66 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
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": "experimental-hypothetical-new-graphics-site-idea",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "dotenv -c -- nodemon",
"build": "next build && yarn build:server",
"build:server": "tsc -p tsconfig.server.json && tsc-alias -p tsconfig.server.json",
"start": "NODE_ENV=production node dist/server/index.js",
"check": "next lint && tsc --noEmit",
"db:generate": "prisma migrate dev",
"db:migrate": "prisma migrate deploy",
"db:push": "dotenv -c -- prisma db push",
"db:studio": "prisma studio",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"format:write": "prettier --write \"**/*.{ts,tsx,js,jsx,mdx}\" --cache",
"postinstall": "prisma generate",
"lint": "next lint",
"lint:fix": "next lint --fix",
"preview": "yarn build && yarn start",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^4.1.3",
"@mantine/core": "^7.16.3",
"@mantine/hooks": "^7.16.3",
"@mantine/modals": "^7.16.3",
"@mantine/notifications": "^7.16.3",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/adapter-pg": "^7.4.0",
"@prisma/client": "^7.4.0",
"@t3-oss/env-nextjs": "^0.10.1",
"@tanstack/react-query": "^5.50.0",
"@trpc/client": "^11.0.0-rc.446",
"@trpc/react-query": "^11.0.0-rc.446",
"@trpc/server": "^11.0.0-rc.446",
"framer-motion": "^12.23.22",
"geist": "^1.3.0",
"next": "^16.0.7",
"next-auth": "^5.0.0-beta.30",
"obs-websocket-js": "^5.0.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-timer-hook": "^4.0.5",
"server-only": "^0.0.1",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"superjson": "^2.2.1",
"zod": "^3.23.3"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/node": "^20.14.10",
"@types/obs-studio": "^2.17.2",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"baseline-browser-mapping": "^2.9.19",
"dotenv-cli": "^8.0.0",
"eslint": "^10.0.0",
"eslint-config-next": "^16.1.6",
"nodemon": "^3.1.9",
"postcss": "^8.5.2",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"prisma": "^7.4.0",
"prisma-json-types-generator": "^4.1.1",
"tailwindcss": "^3.4.3",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.9.3"
},
"ct3aMetadata": {
"initVersion": "7.38.1"
},
"packageManager": "yarn@4.9.4"
}