Nuxt/package.json

91 lines
3.1 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' 'examples/**/node_modules' 'docs/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",
"docs:dev": "nuxi dev .website",
"play": "nuxi dev playground",
"play:build": "nuxi build playground",
"play:preview": "nuxi preview playground",
"test": "pnpm test:fixtures && pnpm test:fixtures:payload && pnpm test:fixtures:dev && pnpm test:fixtures:webpack && pnpm test:unit && 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/test-utils": "workspace:*",
"@nuxt/vite-builder": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"nuxt": "workspace:*",
"vite": "4.4.9",
"vue": "3.3.4",
"magic-string": "^0.30.3"
2021-04-09 13:48:39 +00:00
},
2021-03-18 14:26:41 +00:00
"devDependencies": {
"@actions/core": "1.10.0",
"@nuxt/test-utils": "workspace:*",
"@nuxt/webpack-builder": "workspace:*",
"@nuxtjs/eslint-config-typescript": "12.0.0",
2023-07-06 12:31:59 +00:00
"@types/fs-extra": "11.0.1",
"@types/node": "18.17.11",
"@types/semver": "7.5.0",
"case-police": "0.6.1",
"chalk": "5.3.0",
"changelogen": "0.5.5",
"cheerio": "1.0.0-rc.12",
"consola": "3.2.3",
"devalue": "4.3.2",
"eslint": "8.48.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsdoc": "41.1.2",
"eslint-plugin-no-only-tests": "3.1.0",
"execa": "7.2.0",
"fs-extra": "11.1.1",
"globby": "13.2.2",
"h3": "1.8.1",
"happy-dom": "10.11.0",
"jiti": "1.19.3",
"markdownlint-cli": "^0.33.0",
"nitropack": "2.6.2",
"nuxi": "3.7.2",
"nuxt": "workspace:*",
"nuxt-vitest": "0.10.2",
"ofetch": "1.3.3",
"pathe": "1.1.1",
"playwright-core": "1.37.1",
"rimraf": "5.0.1",
"semver": "7.5.4",
"std-env": "3.4.3",
"typescript": "5.2.2",
"ufo": "1.3.0",
"vite": "4.4.9",
"vitest": "0.33.0",
"vitest-environment-nuxt": "0.10.2",
"vue": "3.3.4",
"vue-eslint-parser": "9.3.1",
"vue-router": "4.2.4",
"vue-tsc": "1.8.8"
},
"packageManager": "pnpm@8.6.12",
"engines": {
"node": "^14.18.0 || >=16.10.0"
}
2021-03-18 14:26:41 +00:00
}