-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
{
"name": "devil-bot-rust-cdk",
"version": "0.1.0",
"bin": {
"devil-bot-rust-cdk": "bin/devil-bot-rust-cdk.js"
},
"scripts": {
"prettier": "prettier --write './@(lib)/**/*@(.ts|.tsx)'",
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"deploy": "./build-function.sh && cdk deploy",
"prepare": "husky install"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"devDependencies": {
"@aws-cdk/assert": "2.37.1",
"@types/jest": "^28.1.7",
"@types/node": "18.7.5",
"aws-cdk": "^2.37.1",
"jest": "^28.0.0",
"prettier": "2.7.1",
"ts-jest": "^28.0.0",
"ts-node": "^10.0.0",
"typescript": "~4.7.4"
},
"dependencies": {
"@aws-cdk/aws-apigateway": "1.168.0",
"@aws-cdk/aws-dynamodb": "1.168.0",
"@aws-cdk/aws-iam": "1.168.0",
"@aws-cdk/aws-lambda": "1.168.0",
"@aws-cdk/core": "1.168.0",
"aws-cdk-lib": "2.37.1",
"constructs": "^10.1.77",
"husky": "7.0.4",
"source-map-support": "0.5.21"
},
"lint-staged": {
"*.{js,ts,json,md}": "prettier --write"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}