-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.65 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": "github-action-and-aws-cdk-sample",
"version": "0.1.0",
"bin": {
"github-action-and-aws-cdk-sample": "bin/github-action-and-aws-cdk-sample.js"
},
"scripts": {
"setup": "npm install --prefix src/ && rm -rf ./node_modules && ln -s src/node_modules .",
"setup:production": "npm install --production --prefix src/ && rm -rf ./node_modules && ln -s src/node_modules .",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"cdk:diff": "cdk diff || true",
"cdk:deploy": "cdk deploy --require-approval never",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.ts --ignore-path .gitignore ."
},
"devDependencies": {
"@aws-cdk/assert": "1.69.0",
"@types/jest": "^26.0.10",
"@types/node": "10.17.27",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"aws-cdk": "1.69.0",
"eslint": "^7.8.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"ts-jest": "^26.2.0"
},
"dependencies": {
"@aws-cdk/core": "1.69.0",
"source-map-support": "^0.5.16",
"@aws-cdk/aws-apigateway": "1.69.0",
"@aws-cdk/aws-lambda": "1.69.0",
"@types/ajv": "^1.0.0",
"@types/aws-lambda": "^8.10.62",
"@types/config": "0.0.36",
"@types/crypto-js": "^3.1.47",
"@types/node-fetch": "^2.5.7",
"aws-lambda": "^1.0.6",
"config": "^3.3.1",
"crypto-js": "^4.0.0",
"dayjs": "^1.8.35",
"dotenv": "^8.2.0",
"node-fetch": "^2.6.1",
"request": "^2.88.2",
"request-json": "^0.6.5",
"typescript": "~3.9.7",
"typescript-json-validator": "^2.4.2",
"ts-node": "^8.1.0"
}
}