-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 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
{
"name": "dapplepot-api",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "tsc -p tsconfig.build.json",
"test": "vitest run",
"test:unit": "vitest run tests/unit/",
"test:integration": "vitest run tests/integration/",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"lint:fix": "eslint --fix src/ tests/",
"migrate": "tsx scripts/migrate.ts",
"migrate-clickhouse": "tsx scripts/migrate-clickhouse.ts",
"seed-admin": "tsx scripts/seed_admin.ts",
"seed-superadmin": "tsx scripts/seed_superadmin.ts"
},
"dependencies": {
"@clickhouse/client": "^1.4.0",
"@google-cloud/storage": "^7.21.0",
"@hono/node-server": "^1.13.0",
"@lemonsqueezy/lemonsqueezy.js": "^4.0.0",
"@types/jsonwebtoken": "^9.0.0",
"bcryptjs": "^2.4.3",
"dotenv": "^17.4.0",
"hono": "^4.4.0",
"ioredis": "^5.3.0",
"jsonwebtoken": "^9.0.0",
"nodemailer": "^6.10.1",
"postgres": "^3.4.0",
"resend": "^4.8.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.0",
"@types/node": "^22.0.0",
"@types/nodemailer": "^6.4.0",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^9.0.0",
"supertest": "^7.0.0",
"tsx": "^4.15.0",
"typescript": "^5.5.0",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=22"
}
}