-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.18 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": "n-crypt",
"version": "1.0.0",
"description": "Decentralized chat application",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./build && tsc",
"start": "NODE_ENV=production node build/index.js",
"lint": "eslint . --ext .ts",
"start:dev": "nodemon"
},
"author": "Nabhya Sharma",
"license": "ISC",
"dependencies": {
"@types/nodemailer": "^6.4.6",
"@types/otp-generator": "^4.0.0",
"agora-access-token": "^2.0.4",
"bcrypt": "^5.1.0",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"firebase-admin": "^11.3.0",
"gun": "^0.2020.1238",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.11.0",
"mongoose": "^6.7.1",
"socket.io": "^4.5.4",
"validator": "^13.7.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.14",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^18.7.20",
"@types/validator": "^13.7.10",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.24.0",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
}
}