-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "aws-sam-ts-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"watch": "NODE_ENV=dev webpack --watch --mode=development",
"build": "NODE_ENV=prod BUNDLE_ANALYZER=false webpack --mode=production --progress",
"build-analyze": "NODE_ENV=prod BUNDLE_ANALYZER=true webpack --mode=production --progress",
"lint": "eslint -c .eslintrc.js --ext ts src",
"pretest": "npm run lint",
"test": "jest",
"coverage": "jest --coverage"
},
"keywords": [],
"author": "Slobodan Stojanović <[email protected]> (http://slobodan.me)",
"license": "MIT",
"dependencies": {
"@types/aws-lambda": "^8.10.46",
"@types/node": "^13.9.1",
"aws-lambda": "^1.0.5",
"aws-sdk": "^2.639.0",
"aws-xray-sdk": "^2.5.0",
"source-map-support": "^0.5.16",
"tslint": "^6.1.0"
},
"devDependencies": {
"@types/jest": "^25.1.4",
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/eslint-plugin-tslint": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"eslint": "^6.8.0",
"eslint-plugin-prefer-arrow": "^1.1.7",
"eslint-plugin-prefer-arrow-functions": "^3.0.1",
"jest": "^25.1.0",
"source-map-loader": "^0.2.4",
"speed-measure-webpack-plugin": "^1.3.1",
"ts-jest": "^25.2.1",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11"
}
}