-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "aws",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"start:local": "sam local start-api --docker-network lambda-local",
"test": "mocha -r ts-node/register \"./tests/**/*.spec.ts\"",
"lint": "eslint 'src/**/*.ts'",
"lint:clean": "eslint 'src/**/*.ts' --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruidpm/test.git"
},
"author": "Rui Magalhães",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.70",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/sinon": "^9.0.10",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.2.1",
"sinon": "^9.2.3",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1",
"ts-node": "^9.1.1"
}
}