-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.01 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
{
"name": "plot",
"version": "1.0.0",
"author": "dayblox",
"description": "WebSocket chatrooms server",
"engines": {
"node": ">=18.11",
"pnpm": ">=7.27"
},
"scripts": {
"dev": "pnpm /dev:.*/",
"dev:build": "esbuild dev.ts ./src --bundle --outdir=dist --packages=external --platform=node --sourcemap --watch",
"dev:run": "node --inspect --no-warnings --loader ./dist/dev.js --watch dist/src",
"build": "esbuild index=./src --bundle --minify --outdir=dist --packages=external --platform=node",
"start": "node dist",
"test": "jest",
"format": "npx prettier . --write"
},
"dependencies": {
"@prisma/client": "^5.14.0",
"@supabase/supabase-js": "^2.39.8",
"dayjs": "^1.11.13",
"esbuild": "^0.17.16",
"logsnag": "^1.0.0",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.15.11",
"@types/ws": "^8.5.4",
"jest": "^29.7.0",
"prettier": "3.2.5",
"prisma": "^5.14.0",
"ts-jest": "^29.2.5"
}
}