-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.68 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.68 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
{
"name": "routine-backend",
"private": true,
"type": "module",
"scripts": {
"check": "biome check --write .",
"format": "biome check --write .",
"prepare": "husky",
"dev": "nodemon --watch src --ext ts --exec tsx src/index.ts",
"build": "tsdown src/index.ts",
"check-types": "tsc --noEmit",
"start": "node dist/index.js",
"db:push": "prisma db push --schema=src/db/prisma/schema/schema.prisma",
"db:studio": "prisma studio --schema=src/db/prisma/schema/schema.prisma",
"db:generate": "prisma generate --schema=src/db/prisma/schema/schema.prisma",
"db:migrate": "prisma migrate dev --schema=src/db/prisma/schema/schema.prisma",
"db:safeMigrate": "prisma migrate dev --create-only --schema=src/db/prisma/schema/schema.prisma"
},
"dependencies": {
"@better-auth/expo": "^1.3.34",
"@prisma/adapter-pg": "^7.0.0",
"@prisma/client": "7.0.0",
"@react-email/components": "^1.0.0",
"@react-email/render": "^2.0.0",
"@types/nodemailer": "^7.0.3",
"@types/react": "^19.2.2",
"axios": "^1.12.2",
"better-auth": "^1.3.34",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"morgan": "^1.10.1",
"node-cron": "^4.2.1",
"nodemailer": "^7.0.10",
"nodemon": "^3.1.10",
"prisma": "^7.0.0",
"react": "^19.2.0",
"tsx": "^4.20.6",
"winston": "^3.18.3",
"zod": "^4.1.11"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/morgan": "^1.9.10",
"@types/node": "^22.13.11",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"tsdown": "^0.15.5"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write ."
]
},
"packageManager": "pnpm@10.18.3"
}