-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 972 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 972 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
30
31
32
{
"name": "nodejs-sam-bootstrap",
"version": "1.0.0",
"description": "Cloneable bootstrap for AWS SAM and NodeJS setup",
"repository": "https://github.com/healthbridgeltd/nodejs-sam-bootstrap/",
"author": "Zava",
"dependencies": {
"aws-sdk": "^2.677.0",
"source-map-support": "^0.5.19"
},
"scripts": {
"lint": "standard --env jest | standard-reporter --stylish",
"lint:fix": "standard --env jest --fix",
"test:watch": "jest --watchAll",
"test": "jest --coverage",
"build": "webpack-cli",
"clean": "rimraf .aws-sam .vscode",
"prebuild": "rimraf .aws-sam .vscode",
"prewatch": "rimraf .aws-sam .vscode",
"watch": "webpack-cli -w"
},
"devDependencies": {
"aws-sam-webpack-plugin": "^0.6.0",
"jest": "25.1.0",
"recursive-install": "1.4.0",
"standard": "14.3.0",
"standard-reporter": "1.0.5",
"terser-webpack-plugin": "^3.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}