-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.99 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.99 KB
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
67
68
69
70
71
72
73
74
75
{
"name": "koa-web-monorepo",
"private": true,
"license": "MIT",
"engines": {
"node": ">=14.18.0 || >=16.0.0"
},
"author": "Zeffon Wu",
"keywords": [
"koa2",
"koa-typescript",
"koa-demo",
"koa-start",
"koa-ts"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"lint": "eslint --cache .",
"typecheck": "tsc -p scripts --noEmit && pnpm -r --parallel run typecheck",
"dev": "pnpm -r --parallel --filter='./packages/*' run dev",
"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.5",
"unbuild": "^1.1.2"
},
"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": "pnpm@8.2.0",
"pnpm": {
"overrides": {
"create-koa-web": "workspace:*"
}
}
}