-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.02 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.02 KB
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
81
{
"name": "lambda-container-service",
"description": "Template to create a aws lambda compatibel function containers",
"author": "Balwant",
"version": "1.0.0",
"license": "MIT",
"keywords": [
"serverless",
"lambda",
"aws",
"nodejs",
"docker",
"container",
"template"
],
"main": "app/index.js",
"typings": "app/index.d.ts",
"files": [
"app"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsc --watch --preserveWatchOutput & nodemon dev-server.js -e js -w ./app",
"build": "tsc",
"build:image": "./scripts/gen-build",
"test": "jest",
"test:watch": "npm t -- --watch",
"test:newman": "npm run build && node dev-server.js --test",
"lint": "tslint --fix -p ./tsconfig.json",
"prettier": "prettier --write './**/*.ts?(x)'",
"release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run prettier"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"winston": "^3.3.3"
},
"devDependencies": {
"@semantic-release-plus/docker": "^2.5.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/exec": "^6.0.1",
"@semantic-release/git": "^10.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"@types/aws-lambda": "^8.10.84",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.0.1",
"express": "^4.17.1",
"husky": "^7.0.0",
"jest": "^27.2.5",
"newman": "^5.3.0",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.7",
"tslint": "^6.1.3",
"typescript": "^4.4.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/phenixcoder/lambda-container-service.git"
}
}