This repository was archived by the owner on Aug 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.43 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
46
47
48
49
50
51
{
"name": "lolo-api",
"version": "1.0.0",
"description": "a RESTful blogging API for your next blog application!",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "npx tsc",
"dev": "tsx watch --include './src/**/*' src/index.ts",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LittleOddBoy/lolo-api.git"
},
"author": "Amirhossein Kalari <hosein.kalari.1387@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LittleOddBoy/lolo-api/issues"
},
"homepage": "https://github.com/LittleOddBoy/lolo-api#readme",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"drizzle-orm": "^0.41.0",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.14.0",
"reflect-metadata": "^0.2.2",
"sanitize-html": "^2.15.0",
"typeorm": "^0.3.22",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^22.14.1",
"@types/sanitize-html": "^2.15.0",
"drizzle-kit": "^0.30.6",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}