2016-10-26 11:40:55 +00:00
|
|
|
{
|
2018-10-17 21:28:25 +00:00
|
|
|
"private": true,
|
|
|
|
"workspaces": [
|
|
|
|
"packages/*",
|
|
|
|
"distributions/*"
|
2016-11-28 16:10:29 +00:00
|
|
|
],
|
2016-10-26 11:40:55 +00:00
|
|
|
"scripts": {
|
2018-10-25 11:22:31 +00:00
|
|
|
"build": "yarn clean && node -r esm ./scripts/package",
|
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",
|
|
|
|
"clean:test": "rimraf test/fixtures/*/dist test/fixtures/*/.nuxt*",
|
2018-10-30 20:42:53 +00:00
|
|
|
"dev": "node -r esm ./scripts/dev",
|
2018-03-19 05:53:48 +00:00
|
|
|
"coverage": "codecov",
|
2018-10-17 21:28:25 +00:00
|
|
|
"lint": "eslint --ext .js,.mjs,.vue .",
|
2018-10-24 13:46:06 +00:00
|
|
|
"lint:app": "eslint-multiplexer eslint --ignore-path packages/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",
|
2018-11-17 10:52:21 +00:00
|
|
|
"test": "yarn test:fixtures && yarn test:unit && yarn test:types",
|
2018-07-24 10:37:56 +00:00
|
|
|
"test:fixtures": "jest test/fixtures",
|
|
|
|
"test:e2e": "jest -i test/e2e",
|
2018-09-14 06:42:50 +00:00
|
|
|
"test:lint": "yarn lint",
|
2018-10-17 21:28:25 +00:00
|
|
|
"test:unit": "jest test/unit",
|
2018-11-17 10:52:21 +00:00
|
|
|
"test:types": "tsc -p test/types",
|
2018-11-16 15:23:37 +00:00
|
|
|
"postinstall": "lerna link && yarn dev",
|
2018-11-26 18:02:10 +00:00
|
|
|
"release": "./scripts/release"
|
2016-10-26 11:40:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-11-14 20:28:17 +00:00
|
|
|
"@babel/core": "^7.1.6",
|
|
|
|
"@babel/preset-env": "^7.1.6",
|
2018-10-16 22:07:12 +00:00
|
|
|
"@nuxtjs/eslint-config": "^0.0.1",
|
2018-09-30 16:11:52 +00:00
|
|
|
"babel-core": "^7.0.0-bridge",
|
|
|
|
"babel-eslint": "^10.0.1",
|
2018-09-13 09:02:19 +00:00
|
|
|
"babel-jest": "^23.6.0",
|
2018-10-09 12:27:02 +00:00
|
|
|
"babel-plugin-dynamic-import-node": "^2.2.0",
|
2018-11-07 22:34:14 +00:00
|
|
|
"cheerio": "^1.0.0-rc.2",
|
2018-09-13 09:02:19 +00:00
|
|
|
"codecov": "^3.1.0",
|
2018-11-20 18:51:13 +00:00
|
|
|
"consola": "^2.3.0",
|
2018-07-04 10:23:02 +00:00
|
|
|
"cross-env": "^5.2.0",
|
2018-09-01 20:44:57 +00:00
|
|
|
"cross-spawn": "^6.0.5",
|
2018-11-10 00:07:54 +00:00
|
|
|
"eslint": "^5.9.0",
|
2018-08-31 20:34:12 +00:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
2018-10-23 06:52:59 +00:00
|
|
|
"eslint-multiplexer": "^1.0.2",
|
2018-08-31 20:34:12 +00:00
|
|
|
"eslint-plugin-import": "^2.14.0",
|
2018-11-28 13:48:20 +00:00
|
|
|
"eslint-plugin-jest": "^22.1.0",
|
2018-10-28 18:14:14 +00:00
|
|
|
"eslint-plugin-node": "^8.0.0",
|
2018-09-13 09:02:19 +00:00
|
|
|
"eslint-plugin-promise": "^4.0.1",
|
2018-08-31 20:34:12 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
2018-11-23 11:56:11 +00:00
|
|
|
"eslint-plugin-vue": "^5.0.0-beta.5",
|
2018-10-17 21:28:25 +00:00
|
|
|
"esm": "^3.0.84",
|
2018-10-12 18:47:53 +00:00
|
|
|
"express": "^4.16.4",
|
2018-03-08 10:41:19 +00:00
|
|
|
"finalhandler": "^1.1.1",
|
2018-11-07 22:39:37 +00:00
|
|
|
"fs-extra": "^7.0.1",
|
2018-08-10 14:08:30 +00:00
|
|
|
"get-port": "^4.0.0",
|
2018-10-17 21:28:25 +00:00
|
|
|
"glob": "^7.1.3",
|
2018-09-13 09:02:19 +00:00
|
|
|
"jest": "^23.6.0",
|
2018-10-31 18:39:50 +00:00
|
|
|
"jest-junit": "^5.2.0",
|
2018-10-29 21:57:39 +00:00
|
|
|
"jsdom": "^13.0.0",
|
2018-10-12 18:36:54 +00:00
|
|
|
"klaw-sync": "^6.0.0",
|
2018-11-30 19:10:32 +00:00
|
|
|
"lerna": "^3.5.1",
|
2018-10-17 21:28:25 +00:00
|
|
|
"lodash": "^4.17.11",
|
2018-11-14 20:28:17 +00:00
|
|
|
"node-fetch": "^2.3.0",
|
2018-04-21 07:27:48 +00:00
|
|
|
"pug": "^2.0.3",
|
|
|
|
"pug-plain-loader": "^1.0.0",
|
2018-11-30 19:15:05 +00:00
|
|
|
"puppeteer": "^1.11.0",
|
2018-08-18 20:14:25 +00:00
|
|
|
"request": "^2.88.0",
|
2018-03-27 22:28:17 +00:00
|
|
|
"request-promise-native": "^1.0.5",
|
|
|
|
"rimraf": "^2.6.2",
|
2018-11-17 10:01:55 +00:00
|
|
|
"rollup": "^0.67.3",
|
2018-10-17 21:28:25 +00:00
|
|
|
"rollup-plugin-alias": "^1.4.0",
|
2018-09-13 09:02:19 +00:00
|
|
|
"rollup-plugin-babel": "^4.0.3",
|
2018-10-10 08:50:54 +00:00
|
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
2018-09-20 19:57:37 +00:00
|
|
|
"rollup-plugin-json": "^3.1.0",
|
2018-10-17 21:28:25 +00:00
|
|
|
"rollup-plugin-license": "^0.7.0",
|
2018-10-25 11:22:31 +00:00
|
|
|
"rollup-plugin-node-resolve": "^3.4.0",
|
2018-10-17 21:28:25 +00:00
|
|
|
"rollup-plugin-replace": "^2.1.0",
|
2018-10-29 15:48:40 +00:00
|
|
|
"sort-package-json": "^1.16.0",
|
2018-11-30 19:15:05 +00:00
|
|
|
"typescript": "^3.2.1",
|
2018-11-25 21:35:31 +00:00
|
|
|
"vue-jest": "^3.0.1"
|
2018-10-31 16:33:22 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nuxt/nuxt.js.git"
|
2016-10-26 11:40:55 +00:00
|
|
|
}
|
2017-05-16 13:13:44 +00:00
|
|
|
}
|