-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.81 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "blog-api",
"version": "1.0.0",
"description": "",
"main": "server.ts",
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production tsx src/server.ts",
"dev": "tsx watch src/server.ts",
"lint": "eslint --fix",
"db:generate": "drizzle-kit up",
"db:migrate": "cross-env DB_MIGRATING=true drizzle-kit push",
"db:studio": "drizzle-kit studio",
"db:seed": "cross-env DB_SEEDING=true tsx src/db/seed.ts"
},
"keywords": [],
"author": "Oluwadamilola Babalola",
"license": "ISC",
"dependencies": {
"@sentry/esbuild-plugin": "^2.18.0",
"@sentry/node": "^8.9.1",
"@sentry/profiling-node": "^8.9.1",
"@supabase/supabase-js": "^2.43.4",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"drizzle-orm": "^0.31.0",
"drizzle-zod": "^0.5.1",
"eslint-plugin-drizzle": "^0.2.3",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"lodash": "^4.17.21",
"postgres": "^3.4.4",
"tsx": "^4.15.1",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.5",
"@types/node": "^20.13.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"bcrypt": "^5.1.1",
"cross-env": "^7.0.3",
"drizzle-kit": "^0.22.1",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
}
}