-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 793 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 793 Bytes
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
{
"name": "initial-structure-node-aws",
"version": "1.0.0",
"author": "Bruno Camboim",
"license": "ISC",
"description": "Initial structure to use Node with AWS Serverless",
"scripts": {
"lint": "eslint src/**",
"local": "dotenv sls offline",
"test": "nyc --reporter=html mocha -t 10000",
"deploy": "sls deploy"
},
"dependencies": {},
"devDependencies": {
"aws-sdk": "^2.650.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"mocha": "^7.1.1",
"mocha-junit-reporter": "^1.23.3",
"nyc": "^15.0.0",
"serverless": "^1.67.0",
"serverless-api-gateway-xray": "^1.0.1",
"serverless-offline": "^5.12.0",
"serverless-plugin-tracing": "^2.0.0",
"serverless-prune-plugin": "^1.4.2"
}
}