-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "cyndaquil",
"version": "0.1.0",
"bin": {
"cyndaquil": "bin/cyndaquil.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "cdk synth && jest",
"cdk": "cdk",
"lint": "eslint --ext .ts lib/ --fix --ignore-pattern \"*.d.ts\" && eslint --ext .ts bin/ --fix --ignore-pattern \"*.d.ts\" && eslint --ext .ts test/ --fix --ignore-pattern \"*.d.ts\""
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "20.7.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"aws-cdk": "2.103.1",
"ts-node": "^10.9.1",
"typescript": "~5.2.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0"
},
"dependencies": {
"aws-cdk-lib": "2.103.1",
"constructs": "^10.0.0",
"source-map-support": "^0.5.21"
}
}