forked from Legit-Control/monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 717 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 717 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
{
"name": "Legit-Control/monorepo",
"private": true,
"version": "0.1.0",
"workspaces": [
"packages/*",
"packages/3rd-party/*",
"examples/legit-code"
],
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm recursive run clean && rm -rf ./node_modules",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"publish:all": "source .env && npm config set //registry.npmjs.org/:_authToken \"${NPM_TOKEN}\" && pnpm exec changeset publish --no-git-checks"
}
}