-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.17 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
{
"name": "single_instance_rds",
"version": "0.1.9",
"bin": {
"single_instance_rds": "bin/single-instance-rds.js"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest",
"cdk": "cdk",
"lint": "eslint --ext .ts lib/ --fix && eslint --ext .ts bin/ --fix && eslint --ext .ts test/ --fix",
"deploy": "rm -rf cdk.out && npm run lint && npm run test && npm run build && cdk deploy --require-approval never"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "20.11.19",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"aws-cdk": "^2.149.0",
"ts-node": "^10.9.2",
"typescript": "~5.3.3",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1"
},
"dependencies": {
"aws-cdk-lib": "^2.149.0",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}