-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
60
{
"name": "backend",
"version": "2.0.0",
"description": "Backend app for Sandfox project",
"main": "app.js",
"scripts": {
"test": "node dist/app",
"start": "node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/sandfox-project/backend.git"
},
"author": "Goulin Khoge",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/sandfox-project/backend/issues"
},
"homepage": "https://gitlab.com/sandfox-project/backend#readme",
"dependencies": {
"typescript": "3.9.5",
"@influxdata/influxdb-client": "^1.3.0",
"body-parser": "^1.19.0",
"colors": "1.3.3",
"cors": "2.8.5",
"dotenv": "8.0.0",
"ejs": "2.6.1",
"express": "4.17.1",
"helmet": "3.18.0",
"joi": "14.3.1",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.11",
"moment": "2.24.0",
"mongoose": "5.5.13",
"nodemailer": "6.2.1",
"web-push": "^3.4.4",
"bcrypt": "3.0.6"
},
"devDependencies": {
"@types/bcrypt": "3.0.0",
"@types/body-parser": "1.17.0",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/ejs": "2.6.3",
"@types/express": "4.17.0",
"@types/helmet": "0.0.43",
"@types/joi": "14.3.3",
"@types/jsonwebtoken": "8.3.2",
"@types/lodash": "4.14.134",
"@types/moment": "2.13.0",
"@types/mongodb": "3.1.28",
"@types/mongoose": "5.5.5",
"@types/morgan": "1.7.35",
"@types/node": "10.*",
"@types/nodemailer": "6.2.0",
"morgan": "1.9.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
}
}