forked from vitejs/vite-plugin-react-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.41 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
{
"name": "workspace",
"private": true,
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"ver": "pnpm recursive --filter create-vite-pages --filter vite-plugin-react-pages --filter vite-pages-theme-basic --filter vite-pages-theme-doc exec -- npm version",
"ver:p": "npm run ver -- patch",
"ver:mi": "npm run ver -- minor",
"ver:major": "npm run ver -- major",
"pub": "pnpm -r publish --filter create-vite-pages --filter vite-plugin-react-pages --filter vite-pages-theme-basic --filter vite-pages-theme-doc",
"update-deps": "pnpm -r update -i -L",
"update-local-deps": "pnpm update -r vite-plugin-mdx vite-plugin-react-pages vite-pages-theme-basic --workspace",
"test-serve": "jest",
"test-build": "cross-env VITE_TEST_BUILD=1 jest",
"debug-build": "cross-env VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 jest",
"postinstall": "node ./scripts/linkBins.js"
},
"devDependencies": {
"@pnpm/link-bins": "^5.3.24",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.34",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"playwright-chromium": "~1.9.2",
"sirv": "^1.0.10",
"slash": "^3.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.3.2",
"vite-pages-theme-basic": "workspace:*",
"vite-plugin-react-pages": "workspace:*"
},
"pnpm": {
"overrides": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
}
}
}