-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.6 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
67
{
"name": "JSPF-Server",
"version": "1.0.0",
"description": "Backend for Jitheshraj Scholarship Portal Form",
"main": "index.js",
"scripts": {
"dboff": "killall mongod",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"lint": "eslint ./src; exit 0",
"lint:fix": "eslint ./src --fix",
"start": "node index.js",
"watch": "nodemon index.js",
"test": "jest -i --verbose --coverage --runInBand"
},
"keywords": [
"JSPF",
"Jitheshraj",
"Scholarship",
"JR Scholarship"
],
"author": "Bharath Kumar Ravichandran",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/BharathKumarRavichandran/JSPF-Server"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"archiver": "^3.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"delay": "^4.3.0",
"dotenv": "^8.0.0",
"easy-pdf-merge": "^0.2.1",
"ejs": "^2.6.2",
"express": "^4.17.1",
"express-session": "^1.16.1",
"express-validator": "^5.3.1",
"googleapis": "^39.2.0",
"http-errors": "^1.7.2",
"http-status-codes": "^1.3.2",
"kue": "^0.11.6",
"kue-ui": "^0.1.0",
"libphonenumber-js": "^1.7.19",
"mkdirp": "^0.5.1",
"mongo-sanitize": "^1.0.1",
"mongoose": "^5.5.14",
"morgan": "^1.9.1",
"multer": "^1.4.1",
"randomstring": "^1.1.5",
"signale": "^1.4.0",
"util": "^0.12.0",
"validator": "^11.0.0",
"winston": "^3.2.1",
"wkhtmltopdf": "^0.3.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1"
}
}