2016-10-26 11:40:55 +00:00
|
|
|
{
|
2019-03-29 19:19:30 +00:00
|
|
|
"name": "nuxt.js",
|
2018-10-17 21:28:25 +00:00
|
|
|
"private": true,
|
2019-03-29 19:19:30 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nuxt/nuxt.js.git"
|
|
|
|
},
|
2018-10-17 21:28:25 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*",
|
|
|
|
"distributions/*"
|
2016-11-28 16:10:29 +00:00
|
|
|
],
|
2016-10-26 11:40:55 +00:00
|
|
|
"scripts": {
|
2020-08-13 12:31:23 +00:00
|
|
|
"audit": "improved-yarn-audit --ignore-dev-deps --min-severity moderate -e 1548",
|
2019-03-16 21:22:01 +00:00
|
|
|
"build": "yarn clean && yarn pkg",
|
2019-04-13 17:14:41 +00:00
|
|
|
"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*/",
|
2019-03-29 19:19:30 +00:00
|
|
|
"dev": "node -r esm ./scripts/dev.js",
|
|
|
|
"postinstall": "lerna link && yarn dev",
|
2018-10-17 21:28:25 +00:00
|
|
|
"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",
|
2020-05-28 19:30:02 +00:00
|
|
|
"ls-lint": "npx @ls-lint/ls-lint",
|
2018-11-16 14:58:00 +00:00
|
|
|
"nuxt": "node -r esm ./packages/cli/bin/nuxt-cli.js",
|
2019-03-29 19:19:30 +00:00
|
|
|
"pkg": "node -r esm ./scripts/package",
|
2020-05-28 19:30:02 +00:00
|
|
|
"test": "yarn test:fixtures && yarn test:dev && yarn test:unit && test:types",
|
2020-01-20 21:42:55 +00:00
|
|
|
"test:dev": "jest test/dev --forceExit",
|
2019-01-12 22:09:49 +00:00
|
|
|
"test:e2e": "jest -i test/e2e --forceExit",
|
2019-03-29 19:19:30 +00:00
|
|
|
"test:fixtures": "jest test/fixtures --forceExit",
|
2020-04-16 14:25:40 +00:00
|
|
|
"test:lint": "yarn lint && yarn ls-lint",
|
2020-05-28 19:30:02 +00:00
|
|
|
"test:types": "tsc -p packages/types/test",
|
|
|
|
"test:unit": "jest packages --forceExit"
|
|
|
|
},
|
2016-10-26 11:40:55 +00:00
|
|
|
"devDependencies": {
|
2020-09-09 08:22:44 +00:00
|
|
|
"@babel/core": "^7.11.6",
|
2020-09-02 10:02:36 +00:00
|
|
|
"@babel/preset-env": "^7.11.5",
|
2020-07-26 15:51:34 +00:00
|
|
|
"@ls-lint/ls-lint": "^1.9.2",
|
2020-07-27 13:34:54 +00:00
|
|
|
"@nuxtjs/eslint-config": "^3.1.0",
|
2020-06-08 11:01:40 +00:00
|
|
|
"@rollup/plugin-alias": "^3.1.1",
|
2020-08-14 17:35:09 +00:00
|
|
|
"@rollup/plugin-commonjs": "^15.0.0",
|
2020-06-08 11:01:40 +00:00
|
|
|
"@rollup/plugin-json": "^4.1.0",
|
2020-08-14 17:35:21 +00:00
|
|
|
"@rollup/plugin-node-resolve": "^9.0.0",
|
2020-06-08 11:01:40 +00:00
|
|
|
"@rollup/plugin-replace": "^2.3.3",
|
2020-09-02 10:02:36 +00:00
|
|
|
"@vue/server-test-utils": "^1.0.5",
|
|
|
|
"@vue/test-utils": "^1.0.5",
|
2020-02-26 12:22:04 +00:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-08-13 13:05:54 +00:00
|
|
|
"babel-jest": "^26.3.0",
|
|
|
|
"consola": "^2.15.0",
|
2020-06-12 13:30:36 +00:00
|
|
|
"create-require": "^1.0.2",
|
2020-05-25 19:33:34 +00:00
|
|
|
"cross-spawn": "^7.0.3",
|
2020-09-02 10:02:36 +00:00
|
|
|
"eslint": "^7.8.1",
|
2019-09-10 09:51:14 +00:00
|
|
|
"eslint-multiplexer": "^2.0.0",
|
2019-05-25 14:17:02 +00:00
|
|
|
"esm": "^3.2.25",
|
2019-11-25 12:09:13 +00:00
|
|
|
"execa": "^3.4.0",
|
2019-05-26 09:58:57 +00:00
|
|
|
"express": "^4.17.1",
|
2019-05-10 10:17:04 +00:00
|
|
|
"finalhandler": "^1.1.2",
|
2019-06-29 04:49:55 +00:00
|
|
|
"fs-extra": "^8.1.0",
|
2020-01-15 10:26:13 +00:00
|
|
|
"get-port": "^5.1.1",
|
2019-11-09 22:18:39 +00:00
|
|
|
"glob": "^7.1.6",
|
2020-09-09 08:22:44 +00:00
|
|
|
"got": "^11.6.1",
|
2020-08-25 14:11:17 +00:00
|
|
|
"improved-yarn-audit": "^2.3.1",
|
2020-05-07 08:33:52 +00:00
|
|
|
"is-wsl": "^2.2.0",
|
2020-08-25 14:11:17 +00:00
|
|
|
"jest": "^26.4.2",
|
2020-06-22 09:50:56 +00:00
|
|
|
"jiti": "^0.1.11",
|
2020-08-13 13:05:54 +00:00
|
|
|
"jsdom": "^16.4.0",
|
2018-10-12 18:36:54 +00:00
|
|
|
"klaw-sync": "^6.0.0",
|
2020-06-09 18:03:23 +00:00
|
|
|
"lerna": "^3.22.1",
|
2020-08-14 17:31:22 +00:00
|
|
|
"lodash": "^4.17.20",
|
2020-09-09 08:22:44 +00:00
|
|
|
"node-fetch": "^2.6.1",
|
2020-05-07 08:33:52 +00:00
|
|
|
"node-sass": "^4.14.1",
|
2020-07-23 07:51:30 +00:00
|
|
|
"puppeteer-core": "^5.2.1",
|
2020-02-16 13:58:21 +00:00
|
|
|
"request": "^2.88.2",
|
2020-02-09 11:04:59 +00:00
|
|
|
"rimraf": "^3.0.2",
|
2020-09-09 08:22:44 +00:00
|
|
|
"rollup": "2.26.11",
|
2020-08-13 13:05:54 +00:00
|
|
|
"rollup-plugin-license": "^2.2.0",
|
2020-01-13 18:32:00 +00:00
|
|
|
"sass-loader": "^8.0.2",
|
2020-05-28 11:16:14 +00:00
|
|
|
"sort-package-json": "^1.44.0",
|
2020-08-25 19:42:37 +00:00
|
|
|
"typescript": "~4.0",
|
2020-08-03 13:57:59 +00:00
|
|
|
"vue-jest": "^4.0.0-beta.5"
|
2019-03-29 19:19:30 +00:00
|
|
|
}
|
2017-05-16 13:13:44 +00:00
|
|
|
}
|