-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"name": "rbac-multi-tenants-system",
"version": "1.0.0",
"description": "A Role-Based Access Control (RBAC) system supporting multi-tenancy without third-party packages like Passport or OAuth 2.0",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"start:prod": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"build": "tsc -p .",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,css,md}\""
},
"author": "Omar A. H. Abo-ElWafa",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"express": "^4.19.2",
"http-status-codes": "^2.3.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"pg": "^8.12.0",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.20",
"validator": "^13.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.14.2",
"@types/redis": "^4.0.11",
"@types/validator": "^13.11.10",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nodemon": "^3.1.3",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}