Nuxt/package.json

176 lines
5.0 KiB
JSON
Raw Normal View History

2016-10-26 11:40:55 +00:00
{
"name": "nuxt",
2018-03-13 10:39:38 +00:00
"version": "2.0.0",
2018-02-28 07:28:17 +00:00
"description": "A minimalistic framework for server-rendered Vue.js applications (inspired by Next.js)",
2016-11-28 16:10:29 +00:00
"contributors": [
{
2017-05-30 14:07:05 +00:00
"name": "Sebastien Chopin (@Atinux)"
2016-11-28 16:10:29 +00:00
},
{
2017-05-30 14:07:05 +00:00
"name": "Alexandre Chopin (@alexchopin)"
},
{
"name": "Pooya Parsa (@pi0)"
},
{
"name": "Clark Du (@clarkdo)"
2016-11-28 16:10:29 +00:00
}
],
"main": "index.js",
"module": "./lib/nuxt.js",
2016-10-26 11:40:55 +00:00
"license": "MIT",
2016-11-28 16:10:29 +00:00
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/nuxt.js"
},
2018-02-28 07:28:17 +00:00
"files": [
"bin",
"lib",
"dist",
"index.js"
2018-02-28 07:28:17 +00:00
],
2016-11-28 16:10:29 +00:00
"keywords": [
"nuxt",
"nuxt.js",
"nuxtjs",
"vue",
"vue.js",
"vuejs",
2017-02-12 10:47:44 +00:00
"vue universal",
"vue ssr",
"vue isomorphic",
"vue versatile"
2016-11-28 16:10:29 +00:00
],
"homepage": "https://github.com/nuxt/nuxt.js#readme",
2016-10-26 11:40:55 +00:00
"bin": {
"nuxt": "./bin/nuxt"
2016-10-26 11:40:55 +00:00
},
"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",
2018-03-19 05:53:48 +00:00
"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"
2016-10-26 11:40:55 +00:00
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
2016-10-26 11:40:55 +00:00
"dependencies": {
"@nuxtjs/friendly-errors-webpack-plugin": "^2.0.2",
2018-01-07 08:21:36 +00:00
"@nuxtjs/youch": "^4.2.3",
2018-07-04 10:23:02 +00:00
"autoprefixer": "^8.6.4",
2018-05-02 08:22:36 +00:00
"babel-core": "^6.26.3",
2018-03-08 10:41:19 +00:00
"babel-loader": "^7.1.4",
2017-12-08 09:11:27 +00:00
"babel-preset-vue-app": "^2.0.0",
"cache-loader": "^1.2.2",
2018-07-04 10:23:02 +00:00
"caniuse-lite": "^1.0.30000862",
2018-04-27 20:35:49 +00:00
"chalk": "^2.4.1",
2018-03-23 05:42:18 +00:00
"chokidar": "^2.0.3",
2017-10-06 18:51:43 +00:00
"compression": "^1.7.1",
"connect": "^3.6.5",
"consola": "^1.4.1",
2018-08-06 16:54:28 +00:00
"css-loader": "^1.0.0",
"cssnano": "^4.0.5",
2018-01-26 11:40:35 +00:00
"es6-promise": "^4.2.4",
2018-07-04 10:23:02 +00:00
"esm": "^3.0.62",
2017-10-06 18:51:43 +00:00
"etag": "^1.8.1",
2018-03-08 10:41:19 +00:00
"file-loader": "^1.1.11",
2017-10-06 18:51:43 +00:00
"fresh": "^0.5.2",
2018-05-21 10:30:37 +00:00
"fs-extra": "^6.0.1",
2017-05-30 14:07:05 +00:00
"glob": "^7.1.2",
2016-11-07 01:34:58 +00:00
"hash-sum": "^1.0.2",
"html-minifier": "^3.5.16",
2018-04-04 08:01:58 +00:00
"html-webpack-plugin": "^3.2.0",
2018-02-07 09:43:58 +00:00
"launch-editor-middleware": "^2.2.1",
2018-04-25 09:12:11 +00:00
"lodash": "^4.17.10",
2018-05-21 10:30:37 +00:00
"lru-cache": "^4.1.3",
2016-12-09 18:40:59 +00:00
"memory-fs": "^0.4.1",
2018-07-04 10:23:02 +00:00
"mini-css-extract-plugin": "^0.4.1",
2017-06-11 13:48:20 +00:00
"minimist": "^1.2.0",
2017-05-09 13:21:36 +00:00
"opencollective": "^1.0.3",
"pify": "^3.0.0",
2018-05-02 08:22:36 +00:00
"postcss": "^6.0.22",
2018-02-13 07:31:15 +00:00
"postcss-import": "^11.1.0",
"postcss-import-resolver": "^1.1.0",
2018-05-08 16:55:52 +00:00
"postcss-loader": "^2.1.5",
"postcss-preset-env": "^5.1.0",
2018-04-04 08:01:58 +00:00
"postcss-url": "^7.3.2",
2018-01-30 01:57:24 +00:00
"semver": "^5.5.0",
"serialize-javascript": "^1.5.0",
2018-02-13 07:31:15 +00:00
"serve-static": "^1.13.2",
2017-07-27 08:21:17 +00:00
"server-destroy": "^1.0.1",
2018-04-04 08:01:58 +00:00
"std-env": "^1.3.0",
2018-03-01 11:31:17 +00:00
"style-resources-loader": "^1.1.0",
"thread-loader": "^1.2.0",
"time-fix-plugin": "^2.0.3",
2018-07-04 10:23:02 +00:00
"uglifyjs-webpack-plugin": "^1.2.7",
"upath": "^1.1.0",
2018-03-08 10:41:19 +00:00
"url-loader": "^1.0.1",
"vue": "^2.5.17",
"vue-loader": "^15.2.2",
2018-07-05 16:17:03 +00:00
"vue-meta": "^1.5.2",
2017-10-17 10:31:49 +00:00
"vue-router": "^3.0.1",
2018-08-01 19:55:26 +00:00
"vue-server-renderer": "^2.5.17",
"vue-template-compiler": "^2.5.17",
2017-11-02 13:23:46 +00:00
"vuex": "^3.0.1",
2018-07-04 10:23:02 +00:00
"webpack": "^4.14.0",
"webpack-bundle-analyzer": "^2.13.1",
2018-04-27 20:35:49 +00:00
"webpack-dev-middleware": "^3.1.3",
2018-05-21 10:30:37 +00:00
"webpack-hot-middleware": "^2.22.2",
2018-04-02 10:58:48 +00:00
"webpack-node-externals": "^1.7.2",
2018-04-04 20:18:07 +00:00
"webpackbar": "^2.6.1"
2016-10-26 11:40:55 +00:00
},
"devDependencies": {
2018-01-15 11:22:29 +00:00
"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",
2018-05-21 10:30:37 +00:00
"codecov": "^3.0.2",
2018-07-04 10:23:02 +00:00
"cross-env": "^5.2.0",
2018-03-23 05:42:18 +00:00
"eslint": "^4.19.1",
2018-03-13 10:33:36 +00:00
"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",
2018-02-07 09:43:58 +00:00
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.8.0",
2018-05-21 10:30:37 +00:00
"eslint-plugin-react": "^7.8.2",
2018-04-25 09:12:11 +00:00
"eslint-plugin-standard": "^3.1.0",
2018-04-22 07:45:00 +00:00
"eslint-plugin-vue": "^4.5.0",
2017-10-17 10:31:49 +00:00
"express": "^4.16.2",
2018-03-08 10:41:19 +00:00
"finalhandler": "^1.1.1",
2018-03-18 23:41:14 +00:00
"get-port": "^3.2.0",
"jest": "^23.1.0",
"jsdom": "^11.11.0",
"nsp": "^3.2.1",
2018-04-21 07:27:48 +00:00
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
2018-07-04 10:23:02 +00:00
"puppeteer": "^1.5.0",
"request": "^2.87.0",
"request-promise-native": "^1.0.5",
"rimraf": "^2.6.2",
"rollup": "^0.59.4",
2018-04-25 09:12:11 +00:00
"rollup-plugin-babel": "^3.0.4",
2018-05-02 08:22:36 +00:00
"rollup-plugin-commonjs": "^9.1.3",
2018-06-01 12:00:17 +00:00
"rollup-plugin-json": "^3.0.0"
2017-05-09 13:21:36 +00:00
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/nuxtjs",
2018-02-28 07:28:17 +00:00
"logo": "https://opencollective.com/nuxtjs/logo.txt?reverse=true&variant=variant2"
2016-10-26 11:40:55 +00:00
}
2017-05-16 13:13:44 +00:00
}