-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "studgage-backend",
"version": "1.0.0",
"description": "the backend side for studgage",
"main": "src/index.js",
"repository": "[email protected]:FadhilAF/studgage-backend.git",
"author": "fadhilaf",
"private": true,
"scripts": {
"dev": "nodemon ./src/index.ts",
"start": "node ./dist/index.js",
"build": "tsc"
},
"dependencies": {
"bcrypt": "^5.0.1",
"connect-mongodb-session": "^3.1.1",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"express-session": "^1.17.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.5.4",
"mongoose-unique-validator": "^3.1.0",
"multer": "^1.4.5-lts.1",
"redis": "^4.3.1",
"socket.io": "^4.5.1",
"typescript": "^4.8.2",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/connect-mongodb-session": "^2.4.4",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose-unique-validator": "^1.0.6",
"@types/node": "^18.7.14",
"@types/validator": "^13.7.6",
"nodemon": "^2.0.19",
"ts-node": "^10.9.1"
}
}