-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ews-landslide-backend",
"version": "1.0.0",
"description": "backend for ews-landslide project",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"tsc --watch\" \"nodemon ./dist/server.js\"",
"play": "concurrently \"tsc --watch\" \"nodemon ./dist/playground/test.js\"",
"tsc": "tsc --watch",
"start": "tsc && nodemon ./dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hleal18/ews-landslide-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hleal18/ews-landslide-backend/issues"
},
"homepage": "https://github.com/hleal18/ews-landslide-backend#readme",
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/body-parser": "^1.17.1",
"@types/cors": "^2.8.6",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.2",
"@types/jsonwebtoken": "^8.3.7",
"@types/mailgun-js": "^0.22.10",
"@types/moment": "^2.13.0",
"@types/mongoose": "^5.5.29",
"@types/mqtt": "^2.5.0",
"@types/node": "^12.12.6",
"@types/passport": "^1.0.2",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"async-mqtt": "^2.4.2",
"bcrypt": "^3.0.8",
"body-parser": "^1.19.0",
"concurrently": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"moment": "^2.27.0",
"momentjs": "^2.0.0",
"mongoose": "^5.7.8",
"mqtt": "^3.0.0",
"nodemon": "^1.19.4",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"ts-mailgun": "^0.4.2",
"typescript": "^3.7.2",
"xlsx": "^0.16.7"
}
}