-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 2.41 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
{
"name": "micro-lambda",
"version": "1.0.1",
"description": "An opinionated, feature-complete microservice template for AWS Lambda using Node JS and Express",
"scripts": {
"build:lint": "eslint src/ test/",
"build:clean": "rimraf dist/",
"build:compile": "serverless webpack",
"build": "npm run build:lint && npm run build:clean && npm run build:compile",
"package": "serverless package",
"deploy": "serverless deploy",
"deploy:dev": "npm run deploy -- --aws-profile dev",
"start": "nodemon -e js,json,yml src/api-local.js --exec \"node --require dotenv/config --require @babel/register\"",
"test": "npm run build:lint && npm run test:unit",
"test:unit": "cross-env NODE_ENV=test nyc mocha --recursive test/unit",
"test:integration": "mocha --require @babel/register --recursive test/integration -r dotenv/config"
},
"author": "Tri Q Tran <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-async-to-generator": "^7.5.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.6.0",
"aws-sdk": "^2.578.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"cross-env": "^5.1.4",
"cucumber": "^5.0.3",
"dotenv": "^6.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.7.0",
"file-loader": "^2.0.0",
"minimist": "^1.2.0",
"mocha": "^5.0.4",
"nodemon": "^1.18.7",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"serverless": "^1.23.0",
"serverless-webpack": "^5.1.0",
"serverless-pseudo-parameters": "^2.5.0",
"serverless-plugin-tracing": "^2.0.0",
"sinon": "^7.1.1",
"sinon-chai": "^3.0.0",
"supertest": "^3.1.0",
"webpack": "^4.1.1",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"@hapi/joi": "^17.0.2",
"aws-serverless-express": "^3.0.2",
"aws-xray-sdk": "^2.1.0",
"cors": "^2.8.4",
"dynamodb-update-expression": "^0.1.21",
"express": "^4.16.1",
"glob": "^7.1.3",
"got": "^11.5.0",
"lodash": "^4.17.5",
"moment": "^2.18.1",
"swagger-jsdoc": "^3.2.6",
"swagger-ui-dist": "^3.17.2",
"uuid": "^3.1.0"
}
}