-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.1 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
{
"name": "ntr-supris",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:mockup": "bun ./prisma/mockup.ts",
"build": "next build",
"format": "bunx biome format --write ./**/*.{ts,tsx}",
"lint": "bunx biome lint --apply-unsafe ./**/*.{ts,tsx}",
"dev:run": "cross-env NODE_ENV=development bun ./app.ts",
"dev": "nodemon --signal SIGINT --watch 'server/**' --ext 'ts,json' --exec bun dev:run",
"start": "cross-env NODE_ENV=production bun ./app.ts"
},
"dependencies": {
"@prisma/client": "^5.13.0",
"@saintno/needed-tools": "^0.3.4",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/supabase-js": "^2.43.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"autoprefixer": "10.4.16",
"bufferutil": "^4.0.8",
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"cookie": "^0.6.0",
"core-js": "^3.37.0",
"cross-env": "^7.0.3",
"exifreader": "^4.23.1",
"framer-motion": "^11.1.9",
"http-terminator": "^3.2.0",
"lodash": "^4.17.21",
"next": "13.5.5",
"next-superjson-plugin": "^0.5.9",
"npm-run-all": "^4.1.5",
"postcss": "8.4.31",
"prisma-redis-middleware": "^4.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.51.4",
"react-toastify": "^10.0.5",
"redis": "^4.6.13",
"sass": "^1.77.0",
"sharp": "^0.33.3",
"superjson": "^2.0.0",
"sweet-scroll": "^4.0.0",
"tailwindcss": "3.3.3",
"threads": "^1.7.0",
"typescript": "5.2.2",
"ua-parser-js": "^1.0.37",
"utf-8-validate": "^6.0.3",
"ws": "^8.17.0",
"zod": "^3.23.7",
"zustand": "^4.5.2"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/cookie": "^0.6.0",
"@types/lodash": "^4.17.1",
"@types/node": "20.8.6",
"@types/nodemailer": "^6.4.15",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"@types/ua-parser-js": "^0.7.39",
"@types/ws": "^8.5.10",
"encoding": "^0.1.13",
"eslint": "8.51.0",
"nodemon": "^3.1.0",
"prisma": "^5.13.0"
}
}