-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 931 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
34
35
36
37
{
"name": "next-tram",
"version": "0.1.0",
"bin": {
"next-tram": "infrastructure/bin/next-tram.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts --ignore-pattern *.d.ts",
"test": "jest --coverage",
"cdk": "cdk",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"aws-cdk-lib": "^2.118.0",
"constructs": "^10.3.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"aws-cdk": "^2.118.0",
"source-map-support": "^0.5.21"
}
}