This repository was archived by the owner on Dec 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 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
{
"name": "rhythmate-service",
"version": "1.0.0",
"private": true,
"main": "src/app.ts",
"packageManager": "pnpm@9.6.0",
"scripts": {
"start": "TZ=utc node dist/app.js",
"start:watch": "TZ=utc tsc-watch --onSuccess \"node dist/app.js\"",
"build": "tsc",
"migrate": "pnpx prisma migrate dev",
"migrate:reset": "pnpx prisma migrate reset",
"studio": "pnpx prisma studio",
"lint": "biome lint --apply ./src",
"format": "biome format --write ./src",
"prepare": "husky",
"test": "TZ=utc jest",
"generate:types": "pnpx openapi-typescript docs/api/openapi.yaml --output src/pkg/schema/schema.gen.ts"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@prisma/client": "^5.10.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-jwt": "^8.4.1",
"express-validator": "^7.2.0",
"firebase-admin": "^12.0.0",
"helmet": "^8.0.0",
"husky": "^9.0.11",
"jsonwebtoken": "^9.0.2",
"lint-staged": "^15.2.2",
"microcms-js-sdk": "^3.1.0",
"node-cron": "^3.0.3",
"openapi-typescript": "^6.7.5",
"type-fest": "^4.25.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@biomejs/biome": "1.5.3",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^20.11.19",
"@types/node-cron": "^3.0.11",
"jest": "^29.7.0",
"prisma": "^5.10.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.ts": "biome format --write src"
}
}