-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.24 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.24 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@chatfall/server",
"version": "0.0.0",
"module": "src/index.ts",
"type": "module",
"scripts": {
"prepare": "bun run scripts/prepare.ts",
"dev": "bun run scripts/dev.ts",
"build": "bun run scripts/build.ts",
"start": "bun run dist/index.js",
"db:migrate": "bun drizzle-kit generate --config ./src/db/drizzle.config.ts && bun drizzle-kit migrate --config ./src/db/drizzle.config.ts && bun run scripts/generate-migration-data.ts",
"db:seed": "bun src/db/seed.ts",
"format": "biome format",
"format:write": "biome format --write",
"lint": "biome lint",
"lint:write": "biome lint --write",
"check": "biome check"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@faker-js/faker": "^8.4.1",
"@fakerjs/faker": "^3.0.0",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@types/bun": "^1.1.6",
"@types/pg": "^8.11.6",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/tmp": "^0.2.6",
"@types/webpack-env": "^1.18.5",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.23.2",
"esbuild": "^0.23.1",
"esbuild-node-externals": "^1.14.0",
"esbuild-plugin-svgr": "^2.1.0",
"esbuild-plugin-tailwind": "^0.1.0",
"esbuild-plugin-tailwindcss": "^1.2.1",
"execa": "^9.4.1",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.10",
"temp-dir": "^3.0.0",
"yargs": "^17.7.2"
},
"peerDependencies": {
"typescript": "^5.5.3"
},
"dependencies": {
"@chatfall/client": "workspace:*",
"@elysiajs/cors": "^1.0.4",
"@elysiajs/swagger": "^1.0.5",
"@libsql/client": "^0.7.0",
"@types/lodash.get": "^4.4.9",
"commander": "^12.1.0",
"cron-async": "^1.1.0",
"drizzle": "^1.4.0",
"drizzle-orm": "^0.32.2",
"drizzle-typebox": "^0.1.1",
"elysia": "^1.1.24",
"form-data": "^4.0.0",
"immer": "^10.1.1",
"jose": "^5.7.0",
"lodash.get": "^4.4.2",
"mailgun.js": "^10.2.3",
"normalize-url": "^8.0.1",
"pg": "^8.12.0",
"picocolors": "^1.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2",
"tmp": "^0.2.3"
},
"trustedDependencies": [
"@biomejs/biome",
"pg"
],
"exports": {
".": "./src/exports.ts"
}
}