-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.61 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "astrobook-monorepo",
"type": "module",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"dev": "turbo --filter example-playground watch dev",
"postinstall": "pnpm --filter=./packages/ui build",
"build": "turbo run build",
"build:package": "turbo build --filter='./packages/*' --concurrency=1",
"lint": "eslint .",
"fix": "manypkg fix && eslint --fix . && prettier --write .",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"test:install": "playwright install --with-deps",
"test:e2e": "playwright test",
"typecheck": "tsc --build .",
"change": "changeset",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm run build:package && pnpm publish --access public -r --no-git-checks --tag latest",
"ci:publish-dev": "pnpm run build:package && pkg-pr-new publish './packages/*' --template ./examples/playground --pnpm"
},
"renovate": {
"extends": [
"github>ocavue/config-renovate"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@changesets/types": "^6.0.0",
"@manypkg/cli": "^0.23.0",
"@microsoft/api-extractor": "^7.48.0",
"@ocavue/eslint-config": "^2.11.2",
"@playwright/test": "^1.49.0",
"@types/node": "^20.17.5",
"eslint": "^9.14.0",
"pkg-pr-new": "^0.0.35",
"playwright": "^1.49.0",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.3.3",
"typescript": "^5.6.3",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}