-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.94 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
68
69
70
71
72
73
74
{
"name": "letsgo-app-backend",
"version": "1.0.0",
"description": "lets: Backend API services",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "sh ./prepare_dist.sh && NODE_ENV=development node app/server.js",
"workers:start": "sh ./prepare_dist.sh && cd ./workers && node start.js",
"lint": "eslint . || true",
"lint:fix": "eslint . --fix || true",
"seed": "node ./setup/seed.js",
"test": "sh ./prepare_dist.sh && NODE_ENV=test istanbul cover --handle-sigint --report html _mocha"
},
"author": "Abhishek",
"repository": {
"type": "git",
"url": ""
},
"dependencies": {
"amqplib": "^0.5.1",
"aws-sdk": "^2.40.0",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"co": "^4.6.0",
"common-errors": "^1.0.0",
"config": "^1.25.1",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"email-templates": "^2.5.4",
"errio": "^1.2.2",
"express": "^4.15.2",
"express-request-id": "^1.4.0",
"get-parameter-names": "^0.3.0",
"googleapis": "^19.0.0",
"http-status": "^1.0.1",
"joi": "^10.3.1",
"jsonwebtoken": "^7.3.0",
"lodash": "^4.17.4",
"mime-types": "^2.1.15",
"moment": "^2.18.1",
"multer": "^1.3.0",
"nodemailer": "^3.1.8",
"pm2": "^2.4.3",
"pug": "^2.0.0-beta11",
"random-js": "^1.0.8",
"request": "^2.81.0",
"request-promise": "^4.2.0",
"rethinkdbdash": "2.3.28",
"sharp": "^0.17.3",
"thinky": "^2.3.8",
"twilio": "^2.11.1",
"uuid": "^3.0.1",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.2",
"eslint-plugin-import": "^2.2.0",
"istanbul": "^0.4.5",
"js-yaml": "^3.8.3",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"proxyquire": "^1.7.11",
"sinon": "^2.1.0",
"swagger-tools": "^0.10.1"
},
"license": "ISC"
}