1
0
mirror of synced 2025-12-25 11:00:31 -05:00
Files
blitz/packages/blitz/package.json
github-actions[bot] 3193bdea48 Version Packages (#4346)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-04 22:48:44 +05:30

114 lines
2.9 KiB
JSON

{
"name": "blitz",
"version": "2.0.10",
"homepage": "https://blitzjs.com/",
"repository": {
"type": "git",
"url": "https://github.com/blitz-js/blitz.git"
},
"scripts": {
"build": "unbuild",
"dev": "rm -rf dist && pnpm run predev && watch unbuild src --wait=0.2",
"lint": "eslint . --fix",
"test": "vitest run",
"test-watch": "vitest",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"predev": "wait-on -d 250 ../generator/dist/index.d.ts"
},
"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": [
"installer.*",
"dist/**",
"bin/**"
],
"bin": {
"blitz": "bin/blitz"
},
"dependencies": {
"@blitzjs/generator": "2.0.10",
"@mrleebo/prisma-ast": "0.2.6",
"@types/global-agent": "2.1.1",
"arg": "5.0.1",
"ast-types": "0.14.2",
"boxen": "7.0.0",
"chalk": "^4.1.0",
"chokidar": "3.5.3",
"console-table-printer": "2.10.0",
"cross-spawn": "7.0.3",
"debug": "4.3.3",
"detect-port": "1.3.0",
"diff": "5.0.0",
"dotenv": "16.0.0",
"dotenv-expand": "8.0.3",
"envinfo": "7.8.1",
"esbuild": "0.14.34",
"esbuild-register": "3.3.3",
"find-up": "4.1.0",
"findup-sync": "5.0.0",
"fs-extra": "10.0.1",
"global-agent": "3.0.0",
"globby": "13.1.2",
"got": "^11.8.1",
"hasbin": "1.2.3",
"ink": "3.2.0",
"ink-spinner": "4.0.3",
"jscodeshift": "0.13.0",
"node-fetch": "3.2.3",
"npm-which": "3.0.1",
"ora": "5.3.0",
"os-name": "5.0.1",
"p-event": "4.2.0",
"pkg-dir": "5.0.0",
"progress": "2.0.3",
"prompts": "2.4.2",
"recast": "0.20.5",
"resolve-cwd": "3.0.0",
"resolve-from": "5.0.0",
"rimraf": "3.0.2",
"semver": "7.3.8",
"superjson": "1.11.0",
"supports-color": "8.1.1",
"tar": "6.1.11",
"ts-node": "10.9.1",
"tsconfig-paths": "4.0.0",
"tslog": "4.9.0",
"watchpack": "2.1.1"
},
"devDependencies": {
"@blitzjs/config": "2.0.10",
"@types/cookie": "0.4.1",
"@types/cross-spawn": "6.0.2",
"@types/debug": "4.1.7",
"@types/detect-port": "1.3.2",
"@types/envinfo": "7.8.1",
"@types/express": "4.17.13",
"@types/findup-sync": "4.0.2",
"@types/fs-extra": "9.0.13",
"@types/hasbin": "1.2.0",
"@types/jscodeshift": "0.11.2",
"@types/node-fetch": "2.6.1",
"@types/npm-which": "3.0.1",
"@types/progress": "2.0.5",
"@types/prompts": "2.0.14",
"@types/react": "18.0.25",
"@types/react-dom": "17.0.14",
"@types/test-listen": "1.1.0",
"@types/watchpack": "1.1.1",
"express": "4.17.3",
"react": "18.2.0",
"test-listen": "1.1.0",
"typescript": "^4.8.4",
"unbuild": "0.7.6",
"watch": "1.0.2",
"zod": "3.20.2"
},
"publishConfig": {
"access": "public"
}
}