-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 976 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
31
32
33
34
35
36
{
"name": "tasks-server",
"description": "Advanced asynchronous tasks execution",
"version": "1.0.0-beta.3",
"maintainers": [
"Reyhan Kamil"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ryhkml/tasks-server.git"
},
"bugs": "https://github.com/ryhkml/tasks-server/issues",
"license": "MIT",
"private": true,
"scripts": {
"bin": "bun build --compile --minify --sourcemap src/main.ts --outfile ./tasks-server",
"test": "bun --env-file=.env.test run init-db.ts -f && bun --env-file=.env.test test --timeout 30000",
"serve": "NODE_ENV=production ./tasks-server",
"serve:dev": "NODE_ENV=development bun run --hot src/main.ts"
},
"dependencies": {
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-validator": "^0.2.2",
"croner": "^8.1.2",
"date-fns": "^4.1.0",
"hono": "^4.6.19",
"nanoid": "^5.0.9",
"rxjs": "^7.8.1",
"tar": "^7.4.3",
"ulid": "^2.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/bun": "latest"
}
}