Nuxt/package.json

86 lines
2.9 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
2020-11-30 22:44:04 +00:00
"name": "nuxt",
"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": {
"audit": "improved-yarn-audit --ignore-dev-deps --min-severity moderate -e 1548",
"build": "yarn clean && yarn pkg",
"changelog": "jiti 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": "jiti ./scripts/dev.js",
"postinstall": "lerna link && yarn dev",
2021-01-13 11:22:49 +00:00
"lint": "eslint --ext .js,.mjs,.vue,.ts .",
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",
"ls-lint": "npx @ls-lint/ls-lint",
"nuxt": "jiti ./packages/cli/bin/nuxt-cli.js",
2021-01-27 20:07:38 +00:00
"pkg": "jiti ./scripts/pkg.js",
"test": "yarn test:fixtures && yarn test:dev && yarn test:unit && test:types",
"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",
2020-04-16 14:25:40 +00:00
"test:lint": "yarn lint && yarn ls-lint",
"test:types": "tsc -p packages/types/test",
"test:unit": "jest packages --forceExit"
},
2016-10-26 11:40:55 +00:00
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@ls-lint/ls-lint": "^1.9.2",
"@nuxtjs/eslint-config": "^5.0.0",
2021-01-13 11:22:49 +00:00
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@rollup/plugin-replace": "^2.3.4",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@vue/server-test-utils": "^1.1.2",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"chrome-launcher": "^0.13.4",
"consola": "^2.15.1",
"create-require": "^1.1.1",
"cross-spawn": "^7.0.3",
"eslint": "^7.19.0",
2019-09-10 09:51:14 +00:00
"eslint-multiplexer": "^2.0.0",
"execa": "^5.0.0",
"express": "^4.17.1",
"finalhandler": "^1.1.2",
"fs-extra": "^9.1.0",
"get-port": "^5.1.1",
"glob": "^7.1.6",
"got": "^11.8.1",
"improved-yarn-audit": "^2.3.2",
"jest": "^26.6.3",
"jiti": "^1.3.0",
"jsdom": "^16.4.0",
"jsonfile": "^6.1.0",
"klaw-sync": "^6.0.0",
"lerna": "^3.22.1",
"lodash": "^4.17.20",
"node-fetch": "^2.6.1",
"puppeteer-core": "^7.0.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"rollup": "2.38.4",
"rollup-plugin-license": "^2.2.0",
"sass": "^1.32.6",
"sass-loader": "^10.1.1",
"sort-package-json": "^1.48.1",
"typescript": "~4.1",
"vue-jest": "^4.0.0-rc.1"
}
2017-05-16 13:13:44 +00:00
}