-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.35 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
40
41
42
43
44
45
{
"name": "url-shortener",
"version": "1.0.0",
"private": true,
"description": "URL shortener: Route53, ACM, API Gateway, AWS Lambda, S3, CloudFront :: Terraform",
"license": "MIT",
"author": "Tal Rofe",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"husky:install": "husky",
"git:config": "git config --local include.path ../.gitconfig",
"prepare": "is-ci || run-p husky:install git:config",
"type-check:root": "tsc --project ./tsconfig.json",
"type-check:nested": "nx run-many --target=type-check --nx-bail",
"type-check:all": "run-p type-check:root type-check:nested",
"prettier": "prettier --check **/*.{ts,js,cjs,json,yaml}",
"knip": "knip -c ./knip.json -t ./tsconfig.json",
"build:nested": "nx run-many --target=build --nx-bail",
"cspell": "cspell lint -c ./cspell.json --gitignore --no-progress --no-summary **"
},
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@types/node": "20.11.25",
"commitizen": "4.3.0",
"cspell": "8.6.0",
"cz-vinyl": "2.5.1",
"husky": "9.0.11",
"is-ci": "3.0.1",
"knip": "5.0.3",
"lint-staged": "15.2.2",
"npm-run-all2": "6.1.2",
"nx": "18.0.7",
"only-allow": "1.2.1",
"pnpm": "8.15.4",
"prettier": "3.2.5",
"prettier-plugin-sh": "0.14.0",
"typescript": "5.4.2"
},
"packageManager": "pnpm@8.15.4",
"engines": {
"pnpm": "8.15.4",
"node": "20.11.1"
}
}