-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.74 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
61
62
63
64
65
66
{
"name": "rest-api-nodejs-mongodb",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node app.js",
"dev": "node ./bin/www",
"test": "nyc _mocha --timeout 10000 --exit --report lcovonly -- -R spec",
"lint": "eslint --fix --config .eslintrc.json \"**/*.js\""
},
"dependencies": {
"@google-cloud/storage": "^6.9.2",
"@google-cloud/vision": "^3.1.2",
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"codacy-coverage": "^3.2.0",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-validator": "^6.2.0",
"form-data": "^4.0.0",
"handlebars": "^4.7.7",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"mailgun.js": "^8.0.6",
"mocha-lcov-reporter": "^1.3.0",
"moment": "^2.24.0",
"mongoose": "^6.9.0",
"morgan": "~1.9.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.3.1",
"socket.io": "^4.6.1",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.5.1",
"mocha": "^10.2.0",
"nodemon": "^2.0.21",
"nyc": "^14.1.1"
},
"description": "```\r GDSC FUTO Backend repository for Google Solution Challenge 2023\r ```",
"main": "app.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dscfuto-org/fasthrash-BE.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dscfuto-org/fasthrash-BE/issues"
},
"homepage": "https://github.com/dscfuto-org/fasthrash-BE#readme"
}