1
0
mirror of synced 2025-12-26 14:00:11 -05:00
Files
blitz/packages/blitz-next/package.json
Siddharth Suresh 9be4d86174 Version Packages (beta) (#4035)
* Version Packages (beta)

* Version Packages (beta)

* pnpm lock

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-04 01:16:55 +05:30

68 lines
1.9 KiB
JSON

{
"name": "@blitzjs/next",
"version": "2.0.0-beta.21",
"scripts": {
"build": "unbuild",
"dev": "pnpm predev && pnpm watch unbuild src --wait=0.2",
"predev": "wait-on -d 250 ../blitz/dist/index-server.d.ts && wait-on -d 250 ../blitz-rpc/dist/index-server.d.ts",
"lint": "eslint . --fix",
"test": "vitest run",
"test-watch": "vitest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"postinstall": "node scripts/postinstall.js"
},
"main": "./dist/index-server.cjs",
"module": "./dist/index-server.mjs",
"browser": "./dist/index-browser.mjs",
"types": "./dist/index-server.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"jest/**",
"dist/**",
"scripts/**",
"eslint.js"
],
"dependencies": {
"@blitzjs/rpc": "2.0.0-beta.21",
"@tanstack/react-query": "4.0.10",
"@types/hoist-non-react-statics": "3.3.1",
"debug": "4.3.3",
"fs-extra": "10.0.1",
"hoist-non-react-statics": "3.3.2",
"superjson": "1.11.0",
"supports-color": "8.1.1"
},
"peerDependencies": {
"blitz": "2.0.0-beta.21",
"next": "*",
"react": "*"
},
"devDependencies": {
"@blitzjs/config": "workspace:2.0.0-beta.21",
"@testing-library/dom": "8.13.0",
"@testing-library/jest-dom": "5.16.3",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@testing-library/user-event": "13.5.0",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "17.0.14",
"@types/testing-library__react-hooks": "4.0.0",
"blitz": "2.0.0-beta.21",
"cross-spawn": "7.0.3",
"find-up": "4.1.0",
"next": "12.2.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"resolve-from": "5.0.0",
"ts-jest": "27.1.4",
"typescript": "^4.8.4",
"unbuild": "0.7.6",
"watch": "1.0.2"
},
"publishConfig": {
"access": "public"
}
}