-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 856 Bytes
/
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
{
"name": "server",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc",
"lint": "eslint . --ext .ts",
"dev": "tsc-watch --onSuccess 'node ./build/index.js'"
},
"devDependencies": {
"@types/express": "^4.17.8",
"@types/mongodb": "^3.5.31",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "^7.12.1",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.5"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.2",
"twilio": "^3.59.0",
"winston": "^3.3.3"
},
"author": "sbiswas2209",
"license": "MIT"
}