-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "typescript-serverless-bootstrap",
"version": "1.0.0",
"author": "HealthBridge Ltd",
"license": "ISC",
"description": "Bootstrap repository for serverless projects using TypeScript",
"engineStrict": true,
"engines": {
"node": "^10"
},
"eslintConfig": {
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"standardx": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint/eslint-plugin"
]
},
"scripts": {
"lint": "standardx **/*.ts --env jest | standard-reporter --stylish",
"lint:fix": "standardx **/*.ts --env jest --fix",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"devDependencies": {
"@types/aws-lambda": "8.10.35",
"@types/jest": "24.0.22",
"@types/node": "12.12.7",
"@typescript-eslint/eslint-plugin": "2.6.1",
"@typescript-eslint/parser": "2.6.1",
"jest": "24.9.0",
"jest-junit": "9.0.0",
"serverless": "1.57.0",
"serverless-newrelic-lambda-layers": "0.1.10",
"serverless-pseudo-parameters": "2.5.0",
"serverless-webpack": "5.3.1",
"standard-reporter": "1.0.5",
"standardx": "5.0.0",
"ts-jest": "24.1.0",
"ts-loader": "6.2.1",
"typescript": "3.7.2",
"webpack": "4.41.2",
"webpack-node-externals": "1.7.2"
},
"dependencies": {
"middy": "0.33.0",
"source-map-support": "0.5.16"
}
}