-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "backend-final-4",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"repository": "https://github.com/JSD-0423/Backend-Final-4.git",
"author": "mohanadft <[email protected]>",
"private": false,
"engines": {
"node": ">=16.14"
},
"scripts": {
"start:dev": "nodemon src/index.ts",
"build": "yarn install && tsc",
"start": "node build"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.3.3",
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.9",
"ts-node": "^10.9.1",
"typescript": "*"
},
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.37.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"http-status": "^1.6.2",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.1",
"mysql2": "^3.4.3",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.32.1",
"sequelize-typescript": "^2.1.5"
}
}