Nuxt/package.json

92 lines
3.1 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js.git"
},
"workspaces": [
"packages/*",
"distributions/*"
2016-11-28 16:10:29 +00:00
],
2016-10-26 11:40:55 +00:00
"scripts": {
"build": "yarn clean && yarn pkg",
"changelog": "node -r esm scripts/changelog.js",
2018-10-23 18:07:23 +00:00
"clean": "yarn clean:build && yarn clean:examples && yarn clean:test",
"clean:build": "rimraf distributions/*/dist packages/*/dist",
"clean:examples": "rimraf examples/*/dist examples/*/.nuxt",
2019-03-06 14:13:54 +00:00
"clean:test": "rimraf test/fixtures/*/dist test/fixtures/*/.nuxt*/",
2018-03-19 05:53:48 +00:00
"coverage": "codecov",
"dev": "node -r esm ./scripts/dev.js",
"postinstall": "lerna link && yarn dev",
"lint": "eslint --ext .js,.mjs,.vue .",
2019-01-06 07:56:59 +00:00
"lint:app": "eslint-multiplexer eslint --ignore-path packages/vue-app/template/.eslintignore 'test/fixtures/!(missing-plugin)/.nuxt!(-dev)/**' | eslint-multiplexer -b",
2018-11-16 14:58:00 +00:00
"nuxt": "node -r esm ./packages/cli/bin/nuxt-cli.js",
"pkg": "node -r esm ./scripts/package",
"test": "yarn test:fixtures && yarn test:unit && yarn test:types",
2019-01-12 22:09:49 +00:00
"test:e2e": "jest -i test/e2e --forceExit",
"test:fixtures": "jest test/fixtures --forceExit",
"test:lint": "yarn lint",
"test:types": "tsc -p test/types",
"test:unit": "jest test/unit packages --forceExit"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-plugin-dynamic-import-node": "^2.2.0",
"cheerio": "^1.0.0-rc.3",
"codecov": "^3.5.0",
"consola": "^2.6.2",
"cross-spawn": "^6.0.5",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-multiplexer": "^1.0.4",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"esm": "^3.2.25",
"execa": "^1.0.0",
"express": "^4.17.0",
"finalhandler": "^1.1.2",
"fork-ts-checker-webpack-plugin": "^1.3.4",
"fs-extra": "^8.0.1",
"get-port": "^5.0.0",
"glob": "^7.1.4",
"is-wsl": "^2.0.0",
"jest": "^24.8.0",
"jest-junit": "^6.4.0",
"jsdom": "^15.1.0",
"klaw-sync": "^6.0.0",
"lerna": "^3.14.1",
"lodash": "^4.17.11",
"node-fetch": "^2.6.0",
"puppeteer-core": "^1.17.0",
2018-08-18 20:14:25 +00:00
"request": "^2.88.0",
"request-promise-native": "^1.0.7",
"rimraf": "^2.6.3",
"rollup": "^1.12.3",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-license": "^0.8.1",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"sort-package-json": "^1.22.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.1.1",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vue-jest": "^4.0.0-beta.2",
"vue-property-decorator": "^8.1.1"
}
2017-05-16 13:13:44 +00:00
}