Nuxt/package.json

64 lines
1.9 KiB
JSON
Raw Normal View History

2021-03-18 14:26:41 +00:00
{
"name": "nuxt-framework",
"license": "MIT",
"type": "module",
2021-03-18 14:26:41 +00:00
"workspaces": [
2021-04-20 12:16:09 +00:00
"packages/*",
"examples/*",
"test/fixtures/*",
"playground"
2021-03-18 14:26:41 +00:00
],
"scripts": {
2021-04-09 13:48:39 +00:00
"build": "FORCE_COLOR=1 lerna run prepack --stream --no-prefix",
"stub": "lerna run prepack -- --stub",
2021-04-09 16:03:27 +00:00
"release": "yarn && yarn lint && FORCE_COLOR=1 lerna publish -m \"chore: release\" && yarn stub",
"nuxi": "./node_modules/.bin/nuxi",
"nuxt": "./node_modules/.bin/nuxi",
2021-10-29 10:38:22 +00:00
"play": "yarn run nuxi dev playground",
2021-04-23 20:30:43 +00:00
"example": "yarn workspace example-$0 dev",
"example:build": "yarn workspace example-$0 build",
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"lint:docs": "./node_modules/.bin/markdownlint ./",
"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"
2021-03-18 14:26:41 +00:00
},
2021-04-09 13:48:39 +00:00
"resolutions": {
2021-09-21 16:49:36 +00:00
"nuxt3": "workspace:./packages/nuxt3",
"unbuild": "^0.5.13",
2021-10-18 15:36:24 +00:00
"jiti": "^1.12.9"
2021-04-09 13:48:39 +00:00
},
2021-03-18 14:26:41 +00:00
"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.34",
"@types/object-hash": "^2",
"chai": "^4.3.4",
"esbuild": "^0.13.14",
"eslint": "^8.2.0",
"eslint-plugin-jsdoc": "^37.0.3",
"execa": "^6.0.0",
"globby": "^11.0.4",
"jiti": "^1.12.9",
2021-03-18 14:26:41 +00:00
"lerna": "^4.0.0",
"markdownlint-cli": "^0.29.0",
"miniflare": "^1.4.1",
"mocha": "^9.1.3",
"object-hash": "^2.2.0",
"pathe": "^0.2.0",
"typescript": "^4.5.2",
"unbuild": "^0.5.13",
"vue-router": "next"
},
2021-10-27 08:37:59 +00:00
"packageManager": "yarn@3.1.0",
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0"
}
2021-03-18 14:26:41 +00:00
}