-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "slack-clone",
"version": "1.0.0",
"description": "an even better version of slack",
"main": "index.ts",
"author": "adeola adeoti",
"license": "MIT",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"build": "tsc -p .",
"lint": "tslint -c tslint.json -p tsconfig.json --fix"
},
"dependencies": {
"@types/socket.io": "^3.0.2",
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"jsonwebtoken": "^9.0.0",
"mongodb": "^5.6.0",
"mongoose": "^7.2.4",
"morgan": "^1.10.0",
"nodemailer": "^6.9.3",
"passport": "0.5",
"passport-google-oauth20": "^2.0.0",
"randomatic": "^3.1.1",
"socket.io": "^4.7.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.3",
"uuid": "^9.0.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"nodemon": "^3.0.1",
"typescript": "^5.1.3"
}
}