-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.13 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.13 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
{
"name": "@minimals/turborepo",
"author": "Minimals",
"version": "1.0.0",
"description": "Shared packages for Minimal UI and Zone UI",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.24.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"test:watch": "turbo test:watch",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"clean": "turbo clean && rm -rf .turbo node_modules",
"fm:check": "prettier --check \"**/*.{js,jsx,ts,tsx}\"",
"fm:fix": "prettier --write \"**/*.{js,jsx,ts,tsx}\"",
"re:dev": "pnpm clean && pnpm install && pnpm dev",
"re:build": "pnpm clean && pnpm install && pnpm build",
"check:update": "pnpm update --interactive --recursive --latest",
"build:release": "turbo build --filter=minimal-shared",
"pre:release": "pnpm build:release && changeset version",
"release": "pnpm build:release && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"prettier": "^3.7.4",
"turbo": "^2.6.3",
"typescript": "^5.9.3"
}
}