Nuxt/package.json

86 lines
2.9 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt-framework",
"private": true,
"repository": "nuxt/nuxt",
2021-03-18 14:26:41 +00:00
"license": "MIT",
"type": "module",
2021-03-18 14:26:41 +00:00
"scripts": {
2023-05-15 21:26:21 +00:00
"build": "pnpm --filter './packages/**' prepack",
"build:stub": "pnpm --filter './packages/**' prepack --stub",
"cleanup": "rimraf 'packages/**/node_modules' 'playground/node_modules' 'node_modules'",
2022-10-17 10:13:30 +00:00
"dev": "pnpm play",
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"lint:fix": "eslint --ext .vue,.ts,.js,.mjs . --fix",
2023-06-27 11:27:11 +00:00
"lint:docs": "markdownlint ./docs && case-police 'docs/**/*.md' *.md",
"lint:docs:fix": "markdownlint ./docs --fix && case-police 'docs/**/*.md' *.md --fix",
"lint:knip": "pnpx knip",
"play": "nuxi dev playground",
"play:build": "nuxi build playground",
"play:preview": "nuxi preview playground",
"test": "pnpm test:fixtures && pnpm test:fixtures:dev && pnpm test:fixtures:webpack && pnpm test:unit && pnpm test:runtime && pnpm test:types && pnpm typecheck",
"test:fixtures": "nuxi prepare test/fixtures/basic && nuxi prepare test/fixtures/runtime-compiler && vitest run --dir test",
"test:fixtures:dev": "TEST_ENV=dev pnpm test:fixtures",
"test:fixtures:webpack": "TEST_BUILDER=webpack pnpm test:fixtures",
"test:runtime": "vitest -c vitest.nuxt.config.ts",
"test:types": "pnpm --filter './test/fixtures/**' test:types",
"test:unit": "vitest run --dir packages",
"typecheck": "tsc --noEmit"
2021-03-18 14:26:41 +00:00
},
"resolutions": {
"@nuxt/kit": "workspace:*",
"@nuxt/schema": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"nuxt": "workspace:*",
"vite": "4.5.0",
"vue": "3.3.8",
"magic-string": "^0.30.5"
2021-04-09 13:48:39 +00:00
},
2021-03-18 14:26:41 +00:00
"devDependencies": {
"@nuxt/test-utils": "3.8.1",
"@nuxt/webpack-builder": "workspace:*",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@types/fs-extra": "11.0.3",
"@types/node": "20.8.10",
"@types/semver": "7.5.4",
"case-police": "0.6.1",
"changelogen": "0.5.5",
"consola": "3.2.3",
"devalue": "4.3.2",
"eslint": "8.53.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "46.8.2",
"eslint-plugin-no-only-tests": "3.1.0",
"execa": "8.0.1",
"fs-extra": "11.1.1",
"globby": "13.2.2",
"h3": "1.8.2",
"happy-dom": "12.10.3",
"jiti": "1.21.0",
"markdownlint-cli": "0.37.0",
"nitropack": "2.7.2",
"nuxi": "3.9.1",
"nuxt": "workspace:*",
"nuxt-vitest": "0.11.3",
"ofetch": "1.3.3",
"pathe": "1.1.1",
"playwright-core": "1.39.0",
"rimraf": "5.0.5",
"semver": "7.5.4",
"std-env": "3.4.3",
"typescript": "5.2.2",
"ufo": "1.3.1",
"vite": "4.5.0",
"vitest": "0.33.0",
"vitest-environment-nuxt": "0.11.3",
"vue": "3.3.8",
"vue-eslint-parser": "9.3.2",
"vue-router": "4.2.5",
"vue-tsc": "1.8.22"
},
"packageManager": "pnpm@8.10.2",
"engines": {
"node": "^14.18.0 || >=16.10.0"
}
2021-03-18 14:26:41 +00:00
}