-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.1 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
{
"name": "api",
"version": "1.1.1",
"scripts": {
"build": "rm -rf lib && esbuild `find src \\( -name '*.ts' -o -name '*.tsx' \\)` --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' && esbuild src/index.ts --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' --banner:js='require(\"module-alias\").addAlias(\"@\", __dirname);'",
"kit": "drizzle-kit",
"lint": "tsc",
"dev": "pnpm build && cd lib && NODE_ENV=development node --enable-source-maps index && cd .."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@rjweb/runtime-node": "^1.1.1",
"@rjweb/utils": "^1.12.27",
"ansi-colors": "^4.1.3",
"drizzle-kit": "^0.28.1",
"drizzle-orm": "^0.36.4",
"module-alias": "^2.2.3",
"node-cron": "^3.0.3",
"pg": "^8.13.1",
"rjweb-server": "^9.8.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.11.10",
"esbuild": "^0.24.0",
"typescript": "^5.7.2"
}
}