Nuxt/package.json

80 lines
2.6 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*/",
"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:dev && yarn test:unit",
"test:dev": "jest test/dev --forceExit",
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",
2020-01-14 22:15:45 +00:00
"test:unit": "jest packages --forceExit",
"audit": "improved-yarn-audit --min-severity moderate"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@nuxtjs/eslint-config": "^2.0.2",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "7.0.0",
"@rollup/plugin-replace": "^2.3.1",
"@vue/server-test-utils": "^1.0.0-beta.31",
"@vue/test-utils": "^1.0.0-beta.31",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"consola": "^2.11.3",
"cross-spawn": "^7.0.1",
"eslint": "6.8.0",
2019-09-10 09:51:14 +00:00
"eslint-multiplexer": "^2.0.0",
"esm": "^3.2.25",
"execa": "^3.4.0",
"express": "^4.17.1",
"finalhandler": "^1.1.2",
"fs-extra": "^8.1.0",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"got": "^10.6.0",
2020-01-14 22:15:45 +00:00
"improved-yarn-audit": "^1.0.1",
"is-wsl": "^2.1.1",
"jest": "^25.1.0",
"jsdom": "^16.2.0",
"klaw-sync": "^6.0.0",
"lerna": "^3.20.2",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"node-sass": "^4.13.1",
"puppeteer-core": "^2.1.1",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"rollup": "^1.31.1",
"rollup-plugin-license": "^0.13.0",
"sass-loader": "^8.0.2",
"sort-package-json": "^1.40.0",
"vue-jest": "^4.0.0-beta.2"
},
"resolutions": {
"@babel/parser": "7.7.5"
}
2017-05-16 13:13:44 +00:00
}