-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "builder-bootcamp-nodejs-starter-kit",
"version": "1.0.0",
"description": "Lambda-based microservice starter kit",
"main": "app.js",
"author": "A. Ulvi",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"prepare": "husky install",
"lint": "eslint src/ --fix",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"start": "sam local start-api",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.76",
"@types/chai": "^4.2.17",
"@types/mocha": "^8.2.2",
"@types/node": "^12.19.9",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"chai": "^4.3.4",
"eslint": "^7.15.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"mocha": "^5.2.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"aws-sdk": "^2.899.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}