generated from zeffon/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "english-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14.18.0 || >=16.0.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"lint": "eslint --cache .",
"typecheck": "tsc -p scripts --noEmit",
"start": "pnpm -r --parallel --filter=./packages/* run start",
"build": "pnpm -r --filter=./packages/* run build",
"release": "tsx scripts/release.ts",
"ci-publish": "tsx scripts/publishCI.ts"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/minimist": "^1.2.2",
"@types/node": "^18.14.6",
"@types/prompts": "^2.4.2",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.34.0",
"eslint-define-config": "^1.15.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-regexp": "^1.12.0",
"execa": "^7.0.0",
"fs-extra": "^11.1.0",
"lint-staged": "^13.1.2",
"minimist": "^1.2.8",
"picocolors": "^1.0.0",
"prettier": "2.8.4",
"prompts": "^2.4.2",
"semver": "^7.3.8",
"simple-git-hooks": "^2.8.1",
"tsx": "^3.12.3",
"typescript": "^4.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec tsx scripts/verifyCommit.ts $1"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"packages/*/{src,types}/**/*.ts": [
"eslint --cache --fix"
],
"packages/**/*.d.ts": [
"eslint --cache --fix"
]
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"eagle": "workspace:*"
}
}
}