mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
175 lines
4.9 KiB
JSON
175 lines
4.9 KiB
JSON
{
|
|
"name": "nuxt",
|
|
"version": "2.0.0",
|
|
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
|
|
"contributors": [
|
|
{
|
|
"name": "Sebastien Chopin (@Atinux)"
|
|
},
|
|
{
|
|
"name": "Alexandre Chopin (@alexchopin)"
|
|
},
|
|
{
|
|
"name": "Pooya Parsa (@pi0)"
|
|
},
|
|
{
|
|
"name": "Clark Du (@clarkdo)"
|
|
}
|
|
],
|
|
"main": "index.js",
|
|
"module": "./lib/nuxt.js",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/nuxt/nuxt.js"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"lib",
|
|
"dist",
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"nuxt",
|
|
"nuxt.js",
|
|
"nuxtjs",
|
|
"vue",
|
|
"vue.js",
|
|
"vuejs",
|
|
"vue universal",
|
|
"vue ssr",
|
|
"vue isomorphic",
|
|
"vue versatile"
|
|
],
|
|
"homepage": "https://github.com/nuxt/nuxt.js#readme",
|
|
"bin": {
|
|
"nuxt": "./bin/nuxt"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn build:nuxt && yarn build:nuxt-start && yarn build:nuxt-legacy",
|
|
"build:nuxt": "cross-env NODE_ENV=production rollup -c scripts/rollup/nuxt.js",
|
|
"build:nuxt-legacy": "cross-env NODE_ENV=production rollup -c scripts/rollup/nuxt-legacy.js",
|
|
"build:nuxt-start": "cross-env NODE_ENV=production rollup -c scripts/rollup/nuxt-start.js",
|
|
"build:make-start": "node scripts/make-start",
|
|
"clean": "rimraf dist",
|
|
"coverage": "codecov",
|
|
"lint": "eslint --ext .js,.mjs,.vue bin lib test examples",
|
|
"postinstall": "opencollective postinstall || exit 0",
|
|
"prebuild": "yarn clean",
|
|
"security": "nsp check || true",
|
|
"test": "yarn test:fixtures && yarn test:unit",
|
|
"test:fixtures": "jest test/fixtures",
|
|
"test:e2e": "jest -i test/e2e",
|
|
"test:lint": "yarn lint && yarn security",
|
|
"test:unit": "jest test/unit"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0",
|
|
"npm": ">=5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@nuxtjs/friendly-errors-webpack-plugin": "^2.0.2",
|
|
"@nuxtjs/youch": "^4.2.3",
|
|
"autoprefixer": "^8.6.4",
|
|
"babel-core": "^6.26.3",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-preset-vue-app": "^2.0.0",
|
|
"cache-loader": "^1.2.2",
|
|
"caniuse-lite": "^1.0.30000862",
|
|
"chalk": "^2.4.1",
|
|
"chokidar": "^2.0.3",
|
|
"compression": "^1.7.1",
|
|
"connect": "^3.6.5",
|
|
"consola": "^1.4.1",
|
|
"css-loader": "^0.28.11",
|
|
"es6-promise": "^4.2.4",
|
|
"esm": "^3.0.62",
|
|
"etag": "^1.8.1",
|
|
"file-loader": "^1.1.11",
|
|
"fresh": "^0.5.2",
|
|
"fs-extra": "^6.0.1",
|
|
"glob": "^7.1.2",
|
|
"hash-sum": "^1.0.2",
|
|
"html-minifier": "^3.5.16",
|
|
"html-webpack-plugin": "^3.2.0",
|
|
"launch-editor-middleware": "^2.2.1",
|
|
"lodash": "^4.17.10",
|
|
"lru-cache": "^4.1.3",
|
|
"memory-fs": "^0.4.1",
|
|
"mini-css-extract-plugin": "^0.4.1",
|
|
"minimist": "^1.2.0",
|
|
"opencollective": "^1.0.3",
|
|
"pify": "^3.0.0",
|
|
"postcss": "^6.0.22",
|
|
"postcss-import": "^11.1.0",
|
|
"postcss-import-resolver": "^1.1.0",
|
|
"postcss-loader": "^2.1.5",
|
|
"postcss-preset-env": "^5.1.0",
|
|
"postcss-url": "^7.3.2",
|
|
"semver": "^5.5.0",
|
|
"serialize-javascript": "^1.5.0",
|
|
"serve-static": "^1.13.2",
|
|
"server-destroy": "^1.0.1",
|
|
"std-env": "^1.3.0",
|
|
"style-resources-loader": "^1.1.0",
|
|
"thread-loader": "^1.2.0",
|
|
"time-fix-plugin": "^2.0.3",
|
|
"uglifyjs-webpack-plugin": "^1.2.7",
|
|
"upath": "^1.1.0",
|
|
"url-loader": "^1.0.1",
|
|
"vue": "^2.5.17",
|
|
"vue-loader": "^15.2.2",
|
|
"vue-meta": "^1.5.2",
|
|
"vue-router": "^3.0.1",
|
|
"vue-server-renderer": "^2.5.16",
|
|
"vue-template-compiler": "^2.5.16",
|
|
"vuex": "^3.0.1",
|
|
"webpack": "^4.14.0",
|
|
"webpack-bundle-analyzer": "^2.13.1",
|
|
"webpack-dev-middleware": "^3.1.3",
|
|
"webpack-hot-middleware": "^2.22.2",
|
|
"webpack-node-externals": "^1.7.2",
|
|
"webpackbar": "^2.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^8.2.1",
|
|
"babel-jest": "^23.0.1",
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
|
"babel-polyfill": "^6.26.0",
|
|
"babel-preset-env": "^1.7.0",
|
|
"codecov": "^3.0.2",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-standard": "^11.0.0",
|
|
"eslint-config-standard-jsx": "^5.0.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-jest": "^21.17.0",
|
|
"eslint-plugin-node": "^6.0.0",
|
|
"eslint-plugin-promise": "^3.8.0",
|
|
"eslint-plugin-react": "^7.8.2",
|
|
"eslint-plugin-standard": "^3.1.0",
|
|
"eslint-plugin-vue": "^4.5.0",
|
|
"express": "^4.16.2",
|
|
"finalhandler": "^1.1.1",
|
|
"get-port": "^3.2.0",
|
|
"jest": "^23.1.0",
|
|
"jsdom": "^11.11.0",
|
|
"nsp": "^3.2.1",
|
|
"pug": "^2.0.3",
|
|
"pug-plain-loader": "^1.0.0",
|
|
"puppeteer": "^1.5.0",
|
|
"request": "^2.87.0",
|
|
"request-promise-native": "^1.0.5",
|
|
"rimraf": "^2.6.2",
|
|
"rollup": "^0.59.4",
|
|
"rollup-plugin-babel": "^3.0.4",
|
|
"rollup-plugin-commonjs": "^9.1.3",
|
|
"rollup-plugin-json": "^3.0.0"
|
|
},
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/nuxtjs",
|
|
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
|
|
}
|
|
}
|