-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "simple-stack",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/jaapvanblaaderen/cdk-lambda-bundling-performance"
},
"license": "MIT",
"bin": {
"simple-stack": "bin/simple-stack.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@aws-cdk/assert": "^1.68.0",
"@aws-cdk/aws-lambda": "^1.68.0",
"@aws-cdk/aws-lambda-nodejs": "^1.68.0",
"@aws-cdk/core": "^1.68.0",
"@types/aws-lambda": "^8.10.64",
"@types/jest": "^26.0.14",
"@types/node": "14.11.10",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"aws-cdk": "^1.68.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.0",
"parcel": "2.0.0-beta.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}