-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 858 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 858 Bytes
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
{
"name": "cdk-starter",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@9.15.0",
"scripts": {
"prepare": "husky",
"build": "turbo build",
"test": "turbo test",
"lint": "eslint **/*.ts --ignore-pattern '**/*.d.ts' --fix",
"typecheck": "tsc --noEmit",
"validate": "pnpm test && pnpm typecheck && pnpm lint"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.133",
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"axios": "^1.6.7",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"turbo": "^2.0.0",
"typescript": "^5.3.3"
}
}