forked from GenieWizards/zenmo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
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
{
"name": "finance-management-api",
"version": "1.0.0",
"author": {
"name": "Shivam Vijaywargi",
"email": "vijaywargishivam@gmail.com",
"url": "https://github.com/shivamvijaywargi"
},
"license": "MIT",
"keywords": [
"Finance Management",
"Bill Split",
"Spend Tracker"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
"dev": "bun run --watch --inspect=0.0.0.0:6499 src/index.ts",
"lint": "eslint .",
"lint:fix": "bun lint --fix",
"start": "bun src/index.ts",
"db:clear": "NODE_ENV=test bun run src/db/scripts/clear-db.script.ts",
"db:seed": "NODE_ENV=development bun run src/db/scripts/seed-db.script.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:reset": "bun run src/db/scripts/reset-db.script.ts",
"deps:update": "npx npm-check-updates --interactive --format group",
"prepare": "husky || true",
"commit": "cz",
"check-types": "tsc --noEmit",
"test": "LOG_LEVEL=silent bun test",
"db:studio": "drizzle-kit studio --port=4000"
},
"dependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@hono/zod-openapi": "^0.18.3",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@scalar/hono-api-reference": "^0.5.162",
"drizzle-kit": "^0.28.1",
"drizzle-orm": "^0.36.4",
"drizzle-seed": "^0.1.2",
"drizzle-zod": "^0.5.1",
"hono": "^4.6.12",
"hono-pino": "^0.7.0",
"pino": "^9.5.0",
"postgres": "^3.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^3.11.2",
"@types/bun": "latest",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"eslint-plugin-format": "^0.1.3",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"pino-pretty": "^13.0.0"
},
"maintainers": [
{
"name": "Shivam Vijaywargi",
"email": "vijaywargishivam@gmail.com",
"url": "https://github.com/shivamvijaywargi"
}
],
"lint-staged": {
"*.ts": "eslint --max-warnings=0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}