-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 901 Bytes
/
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
{
"name": "api",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"typecheck": "bunx tsc --watch --noEmit",
"watch": "bun run --watch src/index.ts",
"dev": "concurrently \"npm run watch\" \"npm run typecheck\"",
"start": "bun run src/index.ts"
},
"dependencies": {
"@elysiajs/cors": "^1.2.0",
"@elysiajs/static": "^1.2.0",
"@elysiajs/swagger": "^1.2.0",
"drizzle-orm": "^0.31.0",
"drizzle-typebox": "^0.1.1",
"elysia": "latest",
"nanoid": "^5.0.7",
"socket.io-client-v2": "npm:socket.io-client@^2.5.0",
"socket.io-client-v3": "npm:socket.io-client@^3.1.3",
"socket.io-client-v4": "npm:socket.io-client@^4.7.4"
},
"devDependencies": {
"better-sqlite3": "^11.0.0",
"bun-types": "latest",
"concurrently": "^8.2.2",
"drizzle-kit": "^0.22.1"
},
"module": "src/index.js"
}