forked from hngx-org/Team-Events-Nodejs-Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.5 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.5 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
{
"name": "wetindeysup-api",
"version": "1.0.0",
"main": "dist/src/index.js",
"license": "MIT",
"scripts": {
"start": "node dist/src/index.js",
"start:dev": "nodemon",
"test": "jest --watchAll --verbose",
"build": "tsc"
},
"engines": {
"node": ">=16.13.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/jest": "^29.5.5",
"@types/jsonwebtoken": "^9.0.3",
"@types/multer": "^1.4.8",
"@types/node": "^20.8.3",
"@types/nodemailer": "^6.4.11",
"@types/passport": "^1.0.13",
"@types/passport-jwt": "^3.0.10",
"@types/passport-twitter": "^1.0.38",
"@types/supertest": "^2.0.14",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prisma": "^5.4.2",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@prisma/client": "^5.4.1",
"@types/bcryptjs": "^2.4.4",
"@types/joi": "^17.2.3",
"@types/swagger-ui-express": "^4.1.4",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.41.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"googleapis": "^126.0.1",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"multer-storage-cloudinary": "^4.0.0",
"nodemailer": "^6.9.6",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"passport-twitter": "^1.0.4",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.3.2"
}
}