-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
60 lines (60 loc) · 2.17 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
50
51
52
53
54
55
56
57
58
59
60
{
"private": true,
"type": "module",
"scripts": {
"dev:overlay": "pnpm --filter overlay dev",
"dev:website": "pnpm --filter website dev",
"dev:playground": "pnpm --filter astro-playground dev",
"dev:electron": "pnpm --filter electron dev",
"build": "pnpm --filter=!astro-playground -r run build",
"preview": "pnpm -r run preview",
"lint": "eslint . --cache --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"format": "prettier --write --cache .",
"test": "pnpm -r --stream --parallel run test",
"test:e2e": "pnpm -r --workspace-concurrency=1 --stream --parallel run test:e2e",
"test:ci": "CI=true pnpm -r run test:ci",
"test:e2e:ci": "CI=true pnpm -r --workspace-concurrency=1 run test:e2e:ci",
"yalc:publish": "yalc publish --push --sig --private",
"changeset:add": "pnpm changeset",
"changeset:consume": "pnpm changeset version",
"changeset:publish": "pnpm run build && pnpm changeset publish",
"clean": "pnpm -r run clean",
"clean:deps": "rimraf ./packages/*/node_modules demos/*/node_modules node_modules",
"clean:all": "pnpm run clean && pnpm run clean:deps && pnpm install"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.14",
"rimraf": "^5.0.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"{apps,packages}/**/*.{ts,tsx}": [
"eslint --cache --fix"
]
},
"packageManager": "pnpm@9.7.0",
"volta": {
"node": "20.10.0",
"pnpm": "9.7.0"
}
}