-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 965 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 965 Bytes
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": "@primate/monorepo",
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"build": "pnpm -r build",
"build:packages": "pnpm -r --filter='./packages/**' build",
"build:apps": "pnpm -r --filter='./apps/**' build",
"eject": "node scripts/eject.js",
"clean": "pnpm -r clean",
"publish": "pnpm -r --access=public publish",
"upgrade": "pnpm -r update -i -L",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "pnpm -r test",
"test:apps": "pnpm -r --filter='./apps/**' test",
"test:packages": "pnpm -r --filter='./packages/**' test",
"sweep": "rm -rf node_modules pnpm-lock.yaml {app,package}s/*/node_modules apps/*/build && npm run clean",
"knip": "knip"
},
"devDependencies": {
"@rcompat/test": "^0.15.0",
"@types/node": "^25.5.2",
"apekit": "^0.0.51",
"eslint": "^9.39.2",
"knip": "^6.3.0",
"proby": "^0.16.2",
"typescript": "^6.0.2"
}
}