-
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.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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": "labpoint",
"version": "0.0.1",
"description": "Backend TypeScript framework with End-to-End Type Safety",
"license": "MIT",
"author": "Nathan",
"type": "module",
"main": "build/index.js",
"private": true,
"scripts": {
"check": "tsc --noEmit && echo ✔ Ok",
"lint": "biome check",
"format": "biome format --write --fix",
"build": "tsup",
"auth:generate": "npx auth@latest generate --config ./src/api/auth.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:upsert": "tsx --env-file=.env ./src/seed.ts",
"db:studio": "drizzle-kit studio",
"dev": "tsx --env-file=.env ./src/index.ts",
"watch": "tsx --watch --env-file=.env ./src/index.ts",
"start": "node --env-file=.env.prod .",
"start:dev": "tsx --env-file=.env ./src/index.ts"
},
"dependencies": {
"@better-auth/drizzle-adapter": "latest",
"@fastify/cors": "latest",
"@fastify/swagger": "latest",
"@scalar/fastify-api-reference": "latest",
"bcrypt": "latest",
"better-auth": "latest",
"chalk": "latest",
"dotenv": "latest",
"drizzle-kit": "latest",
"drizzle-orm": "latest",
"fastify": "latest",
"fastify-plugin": "latest",
"fastify-type-provider-zod": "latest",
"http-status-codes": "latest",
"pg": "latest",
"uuidv7": "latest",
"zod": "latest"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bcrypt": "latest",
"@types/node": "latest",
"tsup": "latest",
"tsx": "latest",
"typescript": "latest"
}
}