-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"dev": "./node_modules/.bin/nodemon src/index.js",
"lint": "./node_modules/.bin/eslint **/*.js",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --exit"
},
"keywords": [],
"author": "Kasun Vithanage",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^4.3.0",
"cross-env": "^5.1.3",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^7.2.0",
"nodemon": "^2.0.4"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-validation": "^1.0.2",
"helmet": "^3.21.1",
"http-status": "^1.0.1",
"joi": "^13.1.2",
"jsonwebtoken": "^8.1.1",
"mongoose": "^5.0.7",
"mongoose-error-handler": "^1.0.0",
"morgan": "^1.9.0",
"mustache": "^3.0.1",
"nodemailer": "^6.2.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"uuid": "^3.3.2"
}
}