vite/package.json

128 lines
3.8 KiB
JSON
Raw Normal View History

2020-04-20 08:00:10 +00:00
{
2020-12-06 23:21:10 +00:00
"name": "vite-monorepo",
"private": true,
"engines": {
"node": ">=14.6.0"
},
"homepage": "https://vitejs.dev/",
"keywords": [
"frontend",
"hmr",
"dev-server",
"build-tool",
"vite"
],
2020-12-08 10:55:12 +00:00
"scripts": {
"preinstall": "npx only-allow pnpm",
2021-07-06 18:23:46 +00:00
"format": "prettier --write .",
"lint": "eslint packages/*/{src,types,__tests__}/** playground/**/__tests__/**/*.ts scripts/**",
"typecheck": "tsc -p scripts --noEmit && tsc -p playground --noEmit",
2022-05-07 03:07:05 +00:00
"test": "run-s test-unit test-serve test-build",
2022-05-11 06:33:20 +00:00
"test-serve": "vitest run -c vitest.config.e2e.ts",
"test-build": "cross-env VITE_TEST_BUILD=1 vitest run -c vitest.config.e2e.ts",
"test-unit": "vitest run",
2022-05-25 14:48:33 +00:00
"test-docs": "pnpm run docs-build",
2022-05-11 06:33:20 +00:00
"debug-serve": "cross-env VITE_DEBUG_SERVE=1 vitest run -c vitest.config.e2e.ts",
"debug-build": "cross-env VITE_TEST_BUILD=1 VITE_PRESERVE_BUILD_ARTIFACTS=1 vitest run -c vitest.config.e2e.ts",
2020-12-30 20:53:52 +00:00
"docs": "vitepress dev docs",
"docs-build": "vitepress build docs",
"docs-serve": "vitepress serve docs",
"build": "pnpm -r --filter=./packages/* run build",
"dev": "pnpm -r --parallel --filter=./packages/* run dev",
"release": "esno scripts/release.ts",
"ci-publish": "esno scripts/publishCI.ts",
"ci-docs": "run-s build docs-build"
2020-12-08 10:55:12 +00:00
},
2020-04-20 23:13:22 +00:00
"devDependencies": {
"@babel/types": "^7.18.4",
"@microsoft/api-extractor": "^7.25.0",
"@rollup/plugin-typescript": "^8.3.3",
2022-05-11 06:33:20 +00:00
"@types/babel__core": "^7.1.19",
"@types/babel__standalone": "^7.1.4",
2022-05-11 14:23:39 +00:00
"@types/convert-source-map": "^1.5.2",
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.7",
"@types/estree": "^0.0.51",
"@types/etag": "^1.8.1",
"@types/fs-extra": "^9.0.13",
2022-05-11 14:23:39 +00:00
"@types/hash-sum": "^1.0.0",
"@types/less": "^3.0.3",
"@types/micromatch": "^4.0.2",
"@types/mime": "^2.0.3",
"@types/minimist": "^1.2.2",
2022-06-13 18:26:27 +00:00
"@types/node": "^17.0.42",
"@types/prompts": "^2.4.0",
2022-05-11 14:23:39 +00:00
"@types/resolve": "^1.20.2",
"@types/sass": "~1.43.1",
"@types/semver": "^7.3.9",
"@types/stylus": "^0.48.38",
2022-05-11 14:23:39 +00:00
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"conventional-changelog-cli": "^2.2.2",
2020-12-20 03:33:13 +00:00
"cross-env": "^7.0.3",
2022-06-13 18:26:27 +00:00
"esbuild": "^0.14.43",
"eslint": "^8.17.0",
"eslint-define-config": "^1.5.1",
2022-05-11 08:44:14 +00:00
"eslint-plugin-import": "^2.26.0",
2020-12-08 10:55:12 +00:00
"eslint-plugin-node": "^11.1.0",
"esno": "^0.16.3",
2022-06-13 18:26:27 +00:00
"execa": "^6.1.0",
"fs-extra": "^10.1.0",
2022-05-11 06:33:20 +00:00
"kill-port": "^1.6.1",
"lint-staged": "^13.0.1",
"minimist": "^1.2.6",
2022-06-13 18:26:27 +00:00
"node-fetch": "^3.2.6",
2020-04-20 23:13:22 +00:00
"npm-run-all": "^4.1.5",
"picocolors": "^1.0.0",
"playwright-chromium": "^1.22.2",
"pnpm": "^7.2.1",
"prettier": "2.7.0",
"prompts": "^2.4.2",
2020-12-08 07:00:53 +00:00
"rimraf": "^3.0.2",
2022-06-13 18:26:27 +00:00
"rollup": "^2.75.6",
"semver": "^7.3.7",
"simple-git-hooks": "^2.8.0",
"sirv": "^2.0.2",
"tslib": "^2.4.0",
"typescript": "^4.6.4",
"unbuild": "^0.7.4",
"vite": "workspace:*",
"vitepress": "^1.0.0-alpha.2",
"vitest": "^0.14.2",
"vue": "^3.2.37"
2020-12-08 07:00:53 +00:00
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "pnpm exec esno scripts/verifyCommit.ts $1"
2020-12-08 07:00:53 +00:00
},
"lint-staged": {
"*": [
"prettier --write --ignore-unknown"
2020-12-08 07:00:53 +00:00
],
"packages/*/{src,types}/**/*.ts": [
2022-05-11 08:44:14 +00:00
"eslint --fix"
],
"packages/**/*.d.ts": [
2022-05-11 08:44:14 +00:00
"eslint --fix"
],
"playground/**/__tests__/**/*.ts": [
"eslint --fix"
2020-12-08 07:00:53 +00:00
]
2021-09-24 20:21:04 +00:00
},
"packageManager": "pnpm@7.2.1",
2021-09-24 20:21:04 +00:00
"pnpm": {
"overrides": {
"vite": "workspace:*",
"@vitejs/plugin-vue": "workspace:*"
},
"packageExtensions": {
"postcss-load-config": {
"peerDependencies": {
"postcss": "*"
}
}
2021-09-24 20:21:04 +00:00
}
2020-04-20 08:00:10 +00:00
}
}