-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.6 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
{
"name": "@tutorial-monorepo/root",
"private": true,
"version": "1.0.0",
"description": "A typescript monorepo example using pnpm workspace, turbo, prettier, eslint, commitlint, lint-staged, husky and esbuild.",
"author": "David Mokel",
"license": "MIT",
"scripts": {
"lint": "eslint ./ --max-warnings=0 --ext .ts",
"lint-fix": "eslint ./ --max-warnings=0 --ext .ts --fix",
"format": "prettier --config .prettierrc '.' --write",
"typecheck": "turbo run typecheck",
"ex-http-graphql:build": "pnpm run --filter @data-farmer/ex-http-graphql build",
"ex-http-graphql:debug": "pnpm run --filter @data-farmer/ex-http-graphql debug",
"ex-copy-static-asset-with-esbuild:build": "pnpm run --filter @data-farmer/ex-copy-static-asset-with-esbuild build",
"ex-copy-static-asset-with-esbuild:debug": "pnpm run --filter @data-farmer/ex-copy-static-asset-with-esbuild debug",
"prepare": "husky install",
"cz": "cz"
},
"engines": {
"node": ">=16.19.0"
},
"packageManager": "pnpm@8.10.0",
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"turbo": "^1.8.3",
"typescript": "4.9.5"
}
}