-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.14 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
75
76
77
78
79
80
81
{
"name": "pingeon",
"description": "",
"version": "1.2.1",
"homepage": "",
"main": "src/",
"keywords": [
"feathers"
],
"license": "MIT",
"repository": {},
"author": {
"name": "kozzztya"
},
"contributors": [],
"bugs": {},
"engines": {
"node": "7.9.0"
},
"scripts": {
"ci": "npm run lint && npm test",
"ci:docker": "./test/docker/run-tests.sh",
"lint": "eslint --ignore-path .gitignore ./",
"start": "forever -m 5 --spinSleepTime 30000 --minUptime 1000 -af src/",
"dev": "DEBUG=app* npm start",
"test": "NODE_ENV=test mocha test/*.test.js",
"dredd": "dredd",
"deploy": "node ./deploy.js",
"deploy:staging": "docker build -t outfit/pingeon:staging . && docker push outfit/pingeon:staging",
"deploy:production": "docker build -t outfit/pingeon:production . && docker push outfit/pingeon:production"
},
"dependencies": {
"ajv": "4.0.6",
"aws-sdk": "2.3.3",
"bluebird": "3.4.6",
"body-parser": "1.15.0",
"compression": "1.6.1",
"cors": "2.7.1",
"debug": "2.2.0",
"deep-extend": "0.4.1",
"express-mw-correlation-id": "3.0.0",
"fanoutpub": "1.0.3",
"faye": "1.2.4",
"feathers": "2.0.1",
"feathers-errors": "2.1.0",
"feathers-hooks": "1.8.1",
"feathers-lg-multi-service-mongoose": "0.1.1",
"feathers-mongoose": "3.3.7",
"feathers-rest": "1.7.2",
"forever": "0.15.2",
"http-errors": "1.5.0",
"lodash": "4.16.3",
"mongoose": "4.6.5",
"mongoose-multi-connect": "0.6.1",
"mongoose-rename-id": "1.0.2",
"node-helpers": "~1.0.8",
"postmark": "1.2.1",
"promdash": "1.1.0",
"raven": "0.12.1",
"simple-express-logger": "2.0.0",
"smart-config": "0.8.0",
"twilio": "3.0.0"
},
"devDependencies": {
"babel-eslint": "6.0.2",
"chai": "3.5.0",
"clear-require": "1.0.1",
"eslint": "2.6.0",
"eslint-config-airbnb": "6.2.0",
"if-env": "1.0.0",
"mocha": "2.4.5",
"mockery": "1.4.1",
"redrun": "5.9.4",
"request": "2.69.0",
"require-subvert": "0.1.0",
"shelljs": "0.7.4",
"sinon": "1.17.3",
"supertest": "1.2.0",
"supertest-promised": "1.0.0"
}
}