-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.36 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
41
42
43
44
45
46
47
48
49
50
{
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"build": "esbuild src/server.ts --bundle --outfile=build/server.js --platform=node --format=esm --packages=external",
"start": "node build/server.js",
"dev": "tsx watch src/server.ts",
"generate": "drizzle-kit generate:pg",
"migrate": "tsx src/migrate.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@aws-sdk/client-ses": "^3.504.0",
"@react-email/components": "^0.0.14",
"@react-email/render": "^0.0.12",
"argon2": "^0.31.2",
"consola": "^3.2.3",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"drizzle-orm": "^0.29.3",
"drizzle-zod": "^0.5.1",
"express": "^4.19.2",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.2",
"postgres": "^3.4.3",
"react": "^18.2.0",
"request-ip": "^3.3.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.18.0",
"@stylistic/eslint-plugin": "^2.1.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.11.16",
"@types/react": "^18.2.53",
"@types/request-ip": "^0.0.41",
"drizzle-kit": "^0.20.14",
"esbuild": "^0.20.0",
"eslint": "^8.57.0",
"pg": "^8.11.3",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}