-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.78 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
{
"name": "mention-realtime",
"version": "0.0.1",
"description": "A repository for managing real-time communication in the Mention application using websockets.",
"main": "src/index.ts",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --watch --trace-warnings dist/index.js",
"dev:esbuild": "pnpm build --watch",
"dev": "run-p dev:*",
"build": "esbuild src/index.ts --bundle --platform=node --packages=external --outfile=dist/index.js --format=esm",
"type-check": "tsc",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.+(ts|js|json)\"",
"test": "echo \"Error: no test specified\" && exit 1",
"validate": "pnpm lint && pnpm format && pnpm build"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@prisma/client": "^5.10.2",
"@supabase/supabase-js": "^2.39.3",
"cors": "^2.8.5",
"express": "^4.18.2",
"socket.io": "^4.7.3",
"winston": "^3.11.0",
"winston-daily-rotate-file": "^4.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@flydotio/dockerfile": "^0.5.0",
"@total-typescript/ts-reset": "^0.5.1",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"commitlint": "^18.4.4",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"prisma": "^5.7.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]"
}