-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "pizzashop",
"type": "module",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"generate": "drizzle-kit generate:pg",
"dev": "bun --watch src/http/server.ts",
"migrate": "bun src/db/migrate.ts",
"seed": "bun src/db/seed.ts",
"reset": "bun src/db/reset.ts"
},
"author": "Diego Fernandes <diego.schell.f@gmail.com>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.896.0",
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/cors": "^1.4.0",
"@elysiajs/jwt": "^0.8.0",
"@paralleldrive/cuid2": "2.2.2",
"@react-email/components": "^0.0.11",
"dayjs": "^1.11.10",
"drizzle-orm": "^0.29.1",
"drizzle-typebox": "^0.1.1",
"elysia": "0.8.17",
"postgres": "3.4.3",
"react": "^18.2.0",
"resend": "^2.0.0",
"zod": "3.22.4"
},
"devDependencies": {
"@faker-js/faker": "8.3.1",
"@rocketseat/eslint-config": "2.1.0",
"@types/pg": "8.10.9",
"@types/react": "^18.2.39",
"bun-types": "^1.0.14",
"chalk": "5.3.0",
"drizzle-kit": "0.20.6",
"eslint": "8.54.0",
"eslint-plugin-drizzle": "^0.2.1",
"eslint_d": "13.1.1",
"pg": "^8.11.3",
"typescript": "5.3.2"
}
}