-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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": "subscriptions-api",
"author": "Mohamed Sami",
"license": "MIT",
"scripts": {
"build": "tsc",
"start": "node build/src/index.js",
"dev": "tsc-watch --onSuccess \"pnpm start\"",
"generate": "drizzle-kit generate:pg",
"format": "prettier --write \"src/**/*.(ts|tsx)\""
},
"dependencies": {
"@aws-sdk/client-ses": "^3.620.1",
"@react-email/components": "^0.0.7",
"@react-email/render": "^0.0.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.26.5",
"drizzle-zod": "^0.4.4",
"express": "^4.19.2",
"express-rate-limit": "^6.11.2",
"md5": "^2.3.0",
"morgan": "^1.10.0",
"postgres": "^3.4.4",
"react": "^18.3.1",
"typescript": "^5.5.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/md5": "^2.3.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.13",
"@types/react": "^18.3.3",
"drizzle-kit": "^0.18.1",
"prettier": "^2.8.8",
"tsc-watch": "^6.2.0"
}
}