-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "hanoservices-backend",
"version": "1.0.0",
"description": "Backend API for HanoServices - Local Service Finder & Tracker Platform",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && node scripts/copy-assets.js",
"start": "node dist/index.js",
"lint": "eslint src --ext .ts",
"test": "jest",
"db:migrate": "node dist/database/migrate.js",
"db:migrate:rollback": "node dist/database/migrate.js rollback",
"db:migrate:rollback-all": "node dist/database/migrate.js rollback-all",
"db:migrate:status": "node dist/database/migrate.js status",
"db:seed": "node dist/database/seed.js"
},
"keywords": [
"hanoservices",
"service-provider",
"booking",
"api"
],
"author": "",
"license": "ISC",
"dependencies": {
"@supabase/supabase-js": "^2.93.3",
"@types/express-rate-limit": "^5.1.3",
"axios": "^1.13.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"expo-server-sdk": "^3.7.0",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"node-cron": "^3.0.3",
"pg": "^8.11.3",
"pindo-sms": "^1.0.5",
"redis": "^4.7.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"twilio": "^5.12.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.12",
"@types/node": "^20.10.5",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.10.9",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}