-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.21 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
{
"name": "lh-api",
"version": "1.0.0",
"description": "Lambda Hub API server",
"main": "lib/server.js",
"scripts": {
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"prestart": "npm run build",
"start": "NODE_PATH=src node lib/server.js",
"start-dynamodb": "NODE_PATH=src babel-node scripts/start-dynamodb.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"coverage": "NODE_PATH=src NODE_ENV=test babel-node $(npm bin)/isparta cover $(npm bin)/_mocha -- --recursive --require babel-polyfill",
"test": "NODE_PATH=src NODE_ENV=test mocha --compilers js:babel-core/register --recursive --require babel-polyfill",
"dev:test": "npm run test -- --watch",
"dev:server": "NODE_PATH=src nodemon --ignore test --exec node_modules/.bin/babel-node src/server.js | bunyan",
"dev": "source .env && npm-run-all -p start-dynamodb dev:server dev:test"
},
"author": "Paolo Scanferla <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lk-architecture/lh-api.git"
},
"bugs": {
"url": "https://github.com/lk-architecture/lh-api/issues"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.7.7",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-plugin-rewire": "^1.0.0-rc-2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"dynalite": "^0.19.0",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"isparta": "^4.0.0",
"mocha": "^2.4.5",
"nodemon": "^1.9.1",
"npm-run-all": "^1.7.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"supertest": "^1.2.0",
"supertest-as-promised": "^3.1.0",
"validator": "^5.2.0"
},
"dependencies": {
"auth0": "^2.1.0",
"aws-sdk": "^2.3.5",
"babel-polyfill": "^6.7.4",
"bluebird": "^3.3.5",
"body-parser": "^1.15.0",
"bunyan": "^1.8.1",
"bunyan-cloudwatch": "^2.0.0",
"bunyan-request": "^1.2.0",
"convexpress": "^1.3.3",
"cors": "^2.7.1",
"express": "^4.13.4",
"express-bearer-token": "^2.1.0",
"express-jwt": "^3.3.0",
"jsonwebtoken": "^5.7.0",
"ramda": "^0.21.0"
}
}