-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "mini-impl",
"version": "1.0.0",
"private": true,
"description": "",
"author": "ks",
"license": "ISC",
"keywords": [
"micro-app",
"monorepo"
],
"main": "index.js",
"scripts": {
"dev:server": "pnpm --filter koa-server run dev",
"dev:server:debug": "pnpm --filter koa-server exec tsx --inspect src/index.ts",
"dev:client": "pnpm --filter react-fe run dev",
"dev": "pnpm run dev:server & pnpm run dev:client",
"lint": "pnpm run format:check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "pnpm exec eslint apps packages --fix",
"format:check": "pnpm exec eslint apps packages"
},
"volta": {
"node": "24.1.0",
"pnpm": "10.11.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.19.0",
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.1",
"typescript": "^6.0.3",
"vitest": "^3.2.4"
},
"workspaces": [
"apps/*",
"packages/*"
]
}