-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.89 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": "soft-serve-tunes",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^20.1.0",
"npm": "^9.6.4"
},
"os": [
"darwin",
"linux"
],
"scripts": {
"dev": "UV_THREADPOOL_SIZE=2 next dev",
"build": "next build",
"start": "UV_THREADPOOL_SIZE=2 NODE_OPTIONS=\"--max_old_space_size=4096 --dns-result-order=ipv4first\" next start",
"lint": "next lint --fix",
"check": "tsc --noEmit",
"postinstall": "prisma generate",
"db": "prisma format && prisma generate && prisma db push",
"format": "prisma format",
"spawn": "pm2 start npm --time --name soft-serve-tunes -- start",
"wake": "curl http://localhost:3000/api/cold-start -I",
"studio": "prisma studio"
},
"dependencies": {
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "4.15.0",
"@tanstack/react-query": "^4.29.12",
"@tanstack/react-virtual": "3.0.0-beta.54",
"@trpc/client": "^10.29.0",
"@trpc/next": "^10.29.0",
"@trpc/react-query": "^10.29.0",
"@trpc/server": "^10.29.0",
"chokidar": "^3.5.3",
"classnames": "^2.3.2",
"formidable": "^2.1.1",
"music-metadata": "^8.1.4",
"next": "13.4.4",
"next-auth": "^4.24.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"sanitize-filename": "^1.6.3",
"sharp": "^0.32.1",
"superjson": "^1.12.3",
"titlecase": "^1.1.3",
"typescript-plugin-css-modules": "5.0.2",
"ws": "^8.14.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@types/formidable": "^2.0.6",
"@types/node": "20.2.5",
"@types/react": "18.2.8",
"@types/react-dom": "18.2.4",
"@types/titlecase": "^1.1.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-next": "13.4.4",
"prisma": "4.15.0",
"typescript": "5.1.3"
}
}