-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "pizza-shop-api",
"module": "index.ts",
"type": "module",
"scripts": {
"dev": "bun --watch src/http/server.ts",
"build": "bun build src/http/server.ts",
"start": "NODE_ENV=production bun src/http/server.ts",
"test": "bun test",
"generate": "drizzle-kit generate:pg",
"studio": "drizzle-kit studio",
"migrate": "bun ./src/db/migrate.ts",
"seed": "bun ./src/db/seed.ts",
"lint": "eslint --fix src --ext ts"
},
"dependencies": {
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/jwt": "^0.8.0",
"@paralleldrive/cuid2": "^2.2.2",
"chalk": "^5.3.0",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.29.3",
"drizzle-typebox": "^0.1.1",
"elysia": "^0.8.9",
"nodemailer": "^6.9.9",
"postgres": "^3.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@rocketseat/eslint-config": "^2.1.0",
"@types/bun": "latest",
"@types/nodemailer": "^6.4.14",
"drizzle-kit": "^0.20.13",
"eslint": "^8.56.0",
"eslint-plugin-drizzle": "^0.2.3",
"pg": "^8.11.3",
"typescript": "^5.3.3"
}
}