-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 1.19 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
{
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.18.2",
"pnpm": ">=8.9.2"
},
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run build --filter \"./packages/*\"",
"build:apps": "turbo run build --filter \"./apps/*\"",
"dev": "turbo run dev",
"dev:apps": "turbo run dev --filter \"./apps/*\"",
"dev:packages": "turbo run dev --filter \"./packages/*\"",
"dev:react": "turbo run dev --filter=\"./packages/*\" --filter=\"!./packages/solid\" --filter=\"!./packages/vue\" --filter=\"./examples/react/*\"",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx}\"",
"publish-packages": "turbo run build lint typecheck --filter \"./packages/*\" && changeset version && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@virtual-grid/eslint-config": "workspace:*",
"eslint": "^8.52.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.6",
"turbo": "^1.11.2",
"typescript": "^4.5.2"
}
}