mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
46f858dd82
Co-authored-by: Xin Du (Clark) <clark.duxin@gmail.com> Co-authored-by: pooya parsa <pyapar@gmail.com>
63 lines
1.9 KiB
JSON
63 lines
1.9 KiB
JSON
{
|
|
"name": "nuxt-framework",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*",
|
|
"examples/*",
|
|
"test/fixtures/*",
|
|
"playground"
|
|
],
|
|
"scripts": {
|
|
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
|
|
"stub": "lerna run prepack -- --stub",
|
|
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
|
|
"nuxi": "./node_modules/.bin/nuxi",
|
|
"nu": "./node_modules/.bin/nuxi",
|
|
"nuxt": "./node_modules/.bin/nuxi",
|
|
"play": "yarn run nuxt dev playground",
|
|
"example": "yarn workspace example-$0 dev",
|
|
"example:build": "yarn workspace example-$0 build",
|
|
"lint": "eslint --ext .vue,.ts,.js .",
|
|
"test": "yarn lint && yarn test:presets",
|
|
"test:presets": "mocha test/presets/*.mjs",
|
|
"test:bridge:webpack": "TEST_BRIDGE=1 yarn test:presets",
|
|
"test:bridge:vite": "TEST_BRIDGE_VITE=1 TEST_BRIDGE=1 yarn test:presets",
|
|
"test:unit": "mocha -r jiti/register packages/*/test/*.test.*",
|
|
"version": "yarn && git add yarn.lock"
|
|
},
|
|
"resolutions": {
|
|
"nuxt3": "workspace:./packages/nuxt3",
|
|
"unbuild": "^0.5.11",
|
|
"jiti": "^1.12.9"
|
|
},
|
|
"devDependencies": {
|
|
"@nuxtjs/eslint-config": "^7.0.0",
|
|
"@nuxtjs/eslint-config-typescript": "^7.0.2",
|
|
"@types/chai": "^4.2.22",
|
|
"@types/jsdom": "^16",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^14.17.29",
|
|
"@types/object-hash": "^2",
|
|
"chai": "^4.3.4",
|
|
"esbuild": "^0.13.9",
|
|
"eslint": "^8.1.0",
|
|
"eslint-plugin-jsdoc": "^37.0.0",
|
|
"execa": "^5.1.1",
|
|
"globby": "^11.0.4",
|
|
"jiti": "^1.12.9",
|
|
"lerna": "^4.0.0",
|
|
"miniflare": "^1.4.1",
|
|
"mocha": "^9.1.3",
|
|
"object-hash": "^2.2.0",
|
|
"pathe": "^0.2.0",
|
|
"typescript": "^4.4.4",
|
|
"unbuild": "^0.5.11",
|
|
"vue-router": "next"
|
|
},
|
|
"packageManager": "yarn@3.0.2",
|
|
"engines": {
|
|
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
|
|
}
|
|
}
|