forked from arnaudjnn/web-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 712 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@web-tools/root",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "pnpm --filter @web-tools/toolkit run build && pnpm --filter @web-tools/api run build && pnpm --filter @web-tools/cli run build",
"start": "pnpm --filter @web-tools/api run start",
"serve": "pnpm --filter @web-tools/api run serve",
"clean": "pnpm -r run clean",
"typecheck": "pnpm -r run typecheck",
"format": "prettier --write \"packages/*/src/**/*.{ts,tsx}\""
},
"engines": {
"node": "22.x"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/node": "^22.13.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}