-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
31 lines (31 loc) · 833 Bytes
/
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
{
"name": "node-network-devtools",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"start": "turbo start",
"ts-start": "turbo ts-start",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:main": "turbo dev --filter=node-network-devtools",
"dev:koa": "turbo dev --filter=koa",
"start:koa": "turbo start --filter=koa",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@repo/eslint-config": "workspace:*",
"@types/node": "^22.7.5",
"commitlint": "^19.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"turbo": "^1.13.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}