-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 1.21 KB
/
package.json
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
{
"name": "monoplate",
"private": true,
"scripts": {
"build": "turbo run build",
"build:ecosystem": "turbo run build --filter='./tools/*' --filter='./packages/*'",
"changeset": "changeset",
"check-sync": "syncpack list-mismatches",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo run dev --no-cache --parallel --continue",
"dev:color": "FORCE_COLOR=1 pnpm dev",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"lint": "turbo run lint",
"lint:affected": "pnpm lint -- --affected",
"prepare": "is-ci || husky install",
"release": "pnpm build:ecosystem && changeset publish",
"sync": "syncpack fix-mismatches",
"test": "turbo run test",
"test:affected": "pnpm test -- --affected",
"version-packages": "changeset version"
},
"devDependencies": {
"@acme/style-guide": "workspace:*",
"@changesets/cli": "^2.27.9",
"@playwright/test": "^1.48.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^22.7.7",
"eslint": "~8.57.1",
"husky": "^9.1.6",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"prettier": "~3.3.3",
"syncpack": "^12.4.0",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]"
}