forked from topcoderinc/dsp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 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
{
"name": "drone-series-api",
"version": "1.0.0",
"description": "DRONE SERIES - API's to update, create and remove drones",
"main": "app.js",
"scripts": {
"start": "node app.js",
"watch": "nodemon app.js",
"lint": "eslint *.js **/*.js || true",
"lint:fix": "eslint *.js **/*.js --fix || true",
"testdata": "node generate-test-data.js"
},
"author": "TCSCODER",
"license": "ISC",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"bcryptjs": "^2.3.0",
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"co": "^4.6.0",
"common-errors": "^1.0.0",
"config": "^1.21.0",
"cors": "^2.8.1",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"get-parameter-names": "^0.3.0",
"http-status": "^0.2.3",
"joi": "^9.0.4",
"jsonwebtoken": "^7.1.9",
"kafka-node": "^1.0.3",
"lodash": "^4.15.0",
"moment": "^2.15.2",
"mongoose": "^4.6.1",
"mongoose-auto-increment": "^5.0.1",
"mongoose-timestamp": "^0.6.0",
"nodemailer": "^2.6.4",
"socket.io": "^1.5.1",
"swagger-ui-express": "^1.0.2",
"winston": "^2.2.0"
},
"devDependencies": {
"eslint": "^3.3.1",
"eslint-config-airbnb-base": "^5.0.2",
"eslint-plugin-import": "^1.13.0",
"nodemon": "^1.11.0"
},
"engines": {
"node": "7.2.1"
}
}