-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.68 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
{
"name": "serverlessify-backend",
"private": true,
"version": "0.1.3",
"description": "A starter kit to write a serverlessify backend",
"ecTools": {
"clean": [
"./dist/*"
],
"copyPackage": {
"scripts": {
"start": "node ./server -- startServer"
}
},
"serveArgs": [
"startServer"
]
},
"main": "dist/server.js",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && npm run test:coverage",
"test:coverage": "babel-node node_modules/.bin/babel-istanbul cover _mocha src/**/*.test.js -- -R spec --recursive --timeout 5000",
"clean": "ec-tools clean",
"copy": "ec-tools copy",
"bundle": "ec-tools bundle",
"build": "ec-tools build",
"image": "ec-tools image",
"db:start": "babel-node --eval \"require('ec-node-tools')().then(require('./tools/db-start')).catch(err => console.error(err.stack))\"",
"db:prepare": "babel-node --eval \"require('ec-node-tools')().then(require('./tools/db-prepare')).catch(err => console.error(err.stack))\"",
"db:fixtures": "babel-node --eval \"require('ec-node-tools')().then(require('./tools/db-fixtures')).catch(err => console.error(err.stack))\"",
"start": "babel-node --eval \"require('ec-node-tools')({ tool: 'serve', watch: true }).then(require('./tools/db-start')).then(require('./tools/db-prepare')).then(require('./tools/db-fixtures')).then(args => args.tool(args)).catch(err => console.error(err.stack))\""
},
"author": "Nicola Peduzzi <[email protected]> (http://nikso.net)",
"license": "MIT",
"engines": {
"node": "4.3"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "^6.13.2",
"babel-eslint": "6.1.2",
"babel-istanbul": "0.11.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-stage-0": "^6.5.0",
"babel-root-import": "4.1.3",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"ec-node-tools": "0.3.1",
"eslint": "3.7.1",
"eslint-config-airbnb-base": "8.0.0",
"eslint-plugin-import": "1.16.0",
"glob": "7.0.6",
"js-yaml": "3.6.1",
"json-loader": "^0.5.4",
"local-dynamo": "0.4.1",
"mocha": "3.0.2",
"mockery": "1.7.0",
"serverless": "1.0.0-rc.1",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"webpack": "^1.13.2",
"yaml-loader": "^0.4.0"
},
"dependencies": {
"auth0": "2.3.1",
"aws-sdk": "2.6.4",
"babel-polyfill": "6.13.0",
"babel-runtime": "6.11.6",
"body-parser": "1.15.2",
"colors": "1.1.2",
"express": "4.14.0",
"moment": "2.14.1",
"ramda": "0.22.1",
"serverlessify": "0.6.1"
}
}