-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.29 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
{
"name": "kyi",
"version": "2.0.0",
"description": "API for the KYI student's database",
"main": "../server.js",
"scripts": {
"test": "mocha",
"start": "node ./bin/www",
"dev": "./node_modules/.bin/env-cmd -f config/environment/.env nodemon ./bin/www",
"fix": "standard --fix",
"lint": "standard",
"test-mailer": "./node_modules/.bin/env-cmd -f config/environment/.env nodemon ./v2/utils/mail/mailer.js"
},
"keywords": [
"api",
"kyi"
],
"author": "Mihir Jichkar",
"license": "MIT",
"dependencies": {
"bad-words": "^3.0.3",
"bcrypt": "^5.0.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"debug": "^4.3.1",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"express-brute": "^1.0.1",
"express-brute-mongoose": "^1.1.0",
"gmail-send": "^1.8.10",
"helmet": "^4.6.0",
"if-script": "^0.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.16",
"mongoose-delete": "^0.5.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.6.0",
"sharp": "^0.25.4",
"validator": "^13.6.0"
},
"devDependencies": {
"mocha": "^8.4.0",
"mongoose-seed": "^0.6.0",
"nodemon": "^2.0.4",
"standard": "^16.0.3"
},
"standard": {
"ignore": [
"v1/",
"v2/public/"
]
}
}