-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
{
"name": "fullstack-bun",
"version": "1.0.0",
"description": "Minimal, performant, type-safe monorepo project template. Bun/Elysia backend, React frontend, Socket.IO bridging the gap.",
"author": "Chris Leveille <cdleveille@gmail.com>",
"license": "MIT",
"type": "module",
"module": "./src/server/index.ts",
"scripts": {
"lint": "eslint . && prettier --check .",
"fix": "eslint --fix . && prettier --write .",
"deploy": "flyctl deploy --remote-only --detach --no-cache --config fly.toml",
"build": "bun ./scripts/build.ts",
"build:prod": "bun ./scripts/build.ts BUN_ENV=production && workbox injectManifest workbox-config.json",
"dev": "bun --watch ./src/server/index.ts",
"start": "bun ./src/server/index.ts"
},
"devDependencies": {
"@tanstack/react-query": "^5.62.7",
"@types/bun": "^1.1.18",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"bun-bundle": "^4.0.3",
"chokidar": "^4.0.1",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^4.1.2",
"socket.io-client": "^4.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"workbox-cli": "^7.3.0",
"workbox-routing": "^7.3.0",
"workbox-strategies": "^7.3.0"
},
"dependencies": {
"@elysiajs/cors": "^1.1.1",
"@elysiajs/static": "^1.1.1",
"@elysiajs/swagger": "^1.1.6",
"elysia": "^1.1.26",
"elysia-helmet": "^2.0.0",
"socket.io": "^4.8.1"
}
}