mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
77 lines
2.5 KiB
JSON
77 lines
2.5 KiB
JSON
{
|
|
"name": "nuxt.js",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nuxt/nuxt.js.git"
|
|
},
|
|
"workspaces": [
|
|
"packages/*",
|
|
"distributions/*"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn clean && yarn pkg",
|
|
"changelog": "node -r esm scripts/changelog.js",
|
|
"clean": "yarn clean:build && yarn clean:examples && yarn clean:test",
|
|
"clean:build": "rimraf distributions/*/dist packages/*/dist",
|
|
"clean:examples": "rimraf examples/*/dist examples/*/.nuxt",
|
|
"clean:test": "rimraf test/fixtures/*/dist test/fixtures/*/.nuxt*/",
|
|
"coverage": "codecov",
|
|
"dev": "node -r esm ./scripts/dev.js",
|
|
"postinstall": "lerna link && yarn dev",
|
|
"lint": "eslint --ext .js,.mjs,.vue .",
|
|
"lint:app": "eslint-multiplexer eslint --ignore-path packages/vue-app/template/.eslintignore 'test/fixtures/!(missing-plugin)/.nuxt!(-dev)/**' | eslint-multiplexer -b",
|
|
"nuxt": "node -r esm ./packages/cli/bin/nuxt-cli.js",
|
|
"pkg": "node -r esm ./scripts/package",
|
|
"test": "yarn test:fixtures && yarn test:unit",
|
|
"test:e2e": "jest -i test/e2e --forceExit",
|
|
"test:fixtures": "jest test/fixtures --forceExit",
|
|
"test:lint": "yarn lint",
|
|
"test:unit": "jest test/unit packages --forceExit"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.2",
|
|
"@babel/preset-env": "^7.7.1",
|
|
"@nuxtjs/eslint-config": "^1.1.2",
|
|
"@vue/server-test-utils": "^1.0.0-beta.29",
|
|
"@vue/test-utils": "^1.0.0-beta.29",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-jest": "^24.9.0",
|
|
"codecov": "^3.6.1",
|
|
"consola": "^2.11.0",
|
|
"cross-spawn": "^7.0.1",
|
|
"eslint": "6.6.0",
|
|
"eslint-multiplexer": "^2.0.0",
|
|
"esm": "^3.2.25",
|
|
"execa": "^3.3.0",
|
|
"express": "^4.17.1",
|
|
"finalhandler": "^1.1.2",
|
|
"fs-extra": "^8.1.0",
|
|
"get-port": "^5.0.0",
|
|
"glob": "^7.1.6",
|
|
"is-wsl": "^2.1.1",
|
|
"jest": "^24.9.0",
|
|
"jest-junit": "^9.0.0",
|
|
"jsdom": "^15.2.1",
|
|
"klaw-sync": "^6.0.0",
|
|
"lerna": "^3.18.4",
|
|
"lodash": "^4.17.15",
|
|
"node-fetch": "^2.6.0",
|
|
"node-sass": "^4.13.0",
|
|
"puppeteer-core": "^2.0.0",
|
|
"request": "^2.88.0",
|
|
"request-promise-native": "^1.0.8",
|
|
"rimraf": "^3.0.0",
|
|
"rollup": "^1.27.0",
|
|
"rollup-plugin-alias": "^2.2.0",
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
"rollup-plugin-json": "^4.0.0",
|
|
"rollup-plugin-license": "^0.12.1",
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
"rollup-plugin-replace": "^2.2.0",
|
|
"sass-loader": "^8.0.0",
|
|
"sort-package-json": "^1.23.1",
|
|
"vue-jest": "^4.0.0-beta.2"
|
|
}
|
|
}
|