-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.77 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
82
83
84
85
86
87
88
{
"name": "dih-api",
"version": "1.0.3",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"docs": "jsdoc src -r -c jsdoc.json -R ./README.md && esdoc -c esdoc.json && aws s3 cp ./out s3://docs.dih.capra.me --recursive && aws s3 cp ./doc/badge.svg s3://docs.dih.capra.me",
"clean": "rm -rf dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "yarn clean && yarn dist",
"dist": "babel src --out-dir dist",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.js --exec babel-node",
"test": "yarn lint && yarn tests",
"tests": "NODE_ENV=test nyc ava --serial",
"test:watch": "NODE_ENV=test ava --serial --watch",
"load": "babel-node test/load.js",
"deploy:production": "ecs-deploy-cli --update --cluster dih-cluster --service dih-api-production --family dih-api-production",
"deploy:staging": "ecs-deploy-cli --update --cluster dih-cluster --service dih-api-staging --family dih-api-staging"
},
"ava": {
"require": "babel-core/register",
"files": [
"test/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/capraconsulting/dih-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/capraconsulting/dih-api/issues"
},
"homepage": "https://github.com/capraconsulting/dih-api#readme",
"dependencies": {
"ava": "0.17.0",
"ava-spec": "1.0.1",
"aws-sdk": "2.4.12",
"bcrypt": "2.0.1",
"bluebird": "3.4.0",
"body-parser": "1.15.1",
"composable-middleware": "0.3.0",
"continuation-local-storage": "3.1.7",
"cookie-parser": "1.4.3",
"cors": "2.7.1",
"errorhandler": "1.4.3",
"express": "4.13.4",
"express-handlebars": "3.0.0",
"jsonwebtoken": "7.0.1",
"lodash": "4.13.1",
"method-override": "2.3.6",
"moment": "2.19.3",
"morgan": "1.7.0",
"nodemailer": "3.0.0",
"nodemailer-express-handlebars": "2.0.0",
"nodemailer-ses-transport": "1.5.0",
"pg": "6.0.1",
"raven": "1.1.1",
"sequelize": "3.23.3",
"sequelize-fixtures": "0.5.3",
"sinon": "1.17.4",
"supertest": "3.0.0",
"supertest-as-promised": "4.0.2",
"umzug": "1.11.0"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "6.9.1",
"babel-eslint": "6.0.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"child-process-promise": "2.0.3",
"coveralls": "2.11.9",
"ecs-deploy-cli": "0.0.6",
"esdoc": "0.4.7",
"esdoc-es7-plugin": "0.0.3",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "5.0.1",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "2.2.0",
"jsdoc": "3.4.0",
"jsdoc-babel": "0.3.0",
"nyc": "10.1.0"
}
}