2016-10-05 23:52:50 +00:00
|
|
|
{
|
2016-10-25 06:11:00 +00:00
|
|
|
"name": "next",
|
2018-05-16 08:09:34 +00:00
|
|
|
"version": "6.0.3-canary.1",
|
2016-10-25 18:47:03 +00:00
|
|
|
"description": "Minimalistic framework for server-rendered React applications",
|
2016-12-16 20:33:08 +00:00
|
|
|
"main": "./dist/server/next.js",
|
2016-10-10 04:18:56 +00:00
|
|
|
"license": "MIT",
|
2016-10-25 18:45:35 +00:00
|
|
|
"repository": "zeit/next.js",
|
2017-06-29 16:35:03 +00:00
|
|
|
"bugs": "https://github.com/zeit/next.js/issues",
|
|
|
|
"homepage": "https://github.com/zeit/next.js",
|
2016-10-05 23:52:50 +00:00
|
|
|
"files": [
|
2016-10-29 17:12:54 +00:00
|
|
|
"dist",
|
2016-12-21 19:26:55 +00:00
|
|
|
"babel.js",
|
2017-10-30 15:01:40 +00:00
|
|
|
"client.js",
|
2016-10-29 17:12:54 +00:00
|
|
|
"link.js",
|
|
|
|
"css.js",
|
2016-12-16 19:25:40 +00:00
|
|
|
"head.js",
|
|
|
|
"document.js",
|
2017-06-28 16:06:24 +00:00
|
|
|
"dynamic.js",
|
2016-12-22 01:40:26 +00:00
|
|
|
"prefetch.js",
|
2017-02-08 19:59:33 +00:00
|
|
|
"router.js",
|
2018-01-30 15:40:52 +00:00
|
|
|
"asset.js",
|
2018-02-23 13:42:06 +00:00
|
|
|
"error.js",
|
2018-02-26 11:03:27 +00:00
|
|
|
"constants.js",
|
2018-04-12 08:33:22 +00:00
|
|
|
"config.js",
|
|
|
|
"app.js"
|
2016-10-05 23:52:50 +00:00
|
|
|
],
|
|
|
|
"bin": {
|
|
|
|
"next": "./dist/bin/next"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2017-06-22 13:52:13 +00:00
|
|
|
"build": "taskr",
|
|
|
|
"release": "taskr release",
|
|
|
|
"pretestonly": "taskr pretest",
|
2017-01-12 04:14:49 +00:00
|
|
|
"testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
|
2017-06-22 13:52:13 +00:00
|
|
|
"posttestonly": "taskr posttest",
|
2018-01-30 15:40:52 +00:00
|
|
|
"testall": "npm run testonly -- --coverage --forceExit --runInBand --verbose --bail",
|
2017-03-08 07:53:05 +00:00
|
|
|
"pretest": "npm run lint",
|
2018-01-30 15:40:52 +00:00
|
|
|
"test": "cross-env npm run testall || npm run testall",
|
2017-01-12 04:14:49 +00:00
|
|
|
"coveralls": "nyc --instrument=false --source-map=false report --temp-directory=./coverage --reporter=text-lcov | coveralls",
|
2016-12-21 01:13:11 +00:00
|
|
|
"lint": "standard 'bin/*' 'client/**/*.js' 'examples/**/*.js' 'lib/**/*.js' 'pages/**/*.js' 'server/**/*.js' 'test/**/*.js'",
|
2017-02-17 05:02:07 +00:00
|
|
|
"prepublish": "npm run release",
|
2017-03-29 23:21:11 +00:00
|
|
|
"precommit": "lint-staged"
|
2016-10-05 23:52:50 +00:00
|
|
|
},
|
2016-10-25 18:47:03 +00:00
|
|
|
"standard": {
|
2016-12-21 01:13:11 +00:00
|
|
|
"parser": "babel-eslint",
|
|
|
|
"ignore": [
|
2017-08-27 20:13:35 +00:00
|
|
|
"**/node_modules/**",
|
|
|
|
"**/examples/**/lib/**"
|
2016-12-21 01:13:11 +00:00
|
|
|
]
|
2016-10-25 18:47:03 +00:00
|
|
|
},
|
2017-03-29 23:21:11 +00:00
|
|
|
"lint-staged": {
|
|
|
|
"*.js": "standard",
|
|
|
|
"bin/*": "standard"
|
|
|
|
},
|
2016-10-05 23:52:50 +00:00
|
|
|
"dependencies": {
|
2018-04-03 07:34:07 +00:00
|
|
|
"@babel/core": "7.0.0-beta.42",
|
|
|
|
"@babel/plugin-proposal-class-properties": "7.0.0-beta.42",
|
|
|
|
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.42",
|
|
|
|
"@babel/plugin-syntax-dynamic-import": "7.0.0-beta.42",
|
|
|
|
"@babel/plugin-transform-react-jsx-source": "7.0.0-beta.42",
|
|
|
|
"@babel/plugin-transform-runtime": "7.0.0-beta.42",
|
|
|
|
"@babel/preset-env": "7.0.0-beta.42",
|
|
|
|
"@babel/preset-react": "7.0.0-beta.42",
|
|
|
|
"@babel/runtime": "7.0.0-beta.42",
|
|
|
|
"@babel/template": "7.0.0-beta.42",
|
2017-01-02 05:20:57 +00:00
|
|
|
"ansi-html": "0.0.7",
|
2018-04-03 07:34:07 +00:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
|
|
|
"babel-loader": "8.0.0-beta.2",
|
2017-02-16 22:53:39 +00:00
|
|
|
"babel-plugin-react-require": "3.0.0",
|
2018-04-03 07:34:07 +00:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "0.4.13",
|
2017-07-01 22:51:38 +00:00
|
|
|
"case-sensitive-paths-webpack-plugin": "2.1.1",
|
2017-02-26 18:44:22 +00:00
|
|
|
"cross-spawn": "5.1.0",
|
2017-06-09 21:30:54 +00:00
|
|
|
"del": "3.0.0",
|
2017-09-27 18:11:02 +00:00
|
|
|
"etag": "1.8.1",
|
2018-03-06 11:55:03 +00:00
|
|
|
"event-source-polyfill": "0.0.12",
|
2018-01-30 15:40:52 +00:00
|
|
|
"find-up": "2.1.0",
|
2017-09-27 18:11:02 +00:00
|
|
|
"fresh": "0.5.2",
|
|
|
|
"friendly-errors-webpack-plugin": "1.6.1",
|
|
|
|
"glob": "7.1.2",
|
2018-04-03 20:08:04 +00:00
|
|
|
"hoist-non-react-statics": "2.5.0",
|
2016-10-05 23:52:50 +00:00
|
|
|
"htmlescape": "1.1.1",
|
2018-02-01 18:54:09 +00:00
|
|
|
"http-errors": "1.6.2",
|
2017-02-14 15:15:42 +00:00
|
|
|
"http-status": "1.0.1",
|
2017-03-16 18:18:25 +00:00
|
|
|
"loader-utils": "1.1.0",
|
2016-10-05 23:52:50 +00:00
|
|
|
"minimist": "1.2.0",
|
2016-11-03 10:07:15 +00:00
|
|
|
"mkdirp-then": "1.2.0",
|
2018-02-01 18:54:09 +00:00
|
|
|
"path-to-regexp": "2.1.0",
|
2017-09-27 18:11:02 +00:00
|
|
|
"prop-types": "15.6.0",
|
2017-09-09 09:37:21 +00:00
|
|
|
"prop-types-exact": "1.1.1",
|
2018-05-09 09:23:53 +00:00
|
|
|
"react-hot-loader": "4.1.3",
|
2017-09-09 09:37:21 +00:00
|
|
|
"recursive-copy": "2.0.6",
|
2018-01-30 15:40:52 +00:00
|
|
|
"resolve": "1.5.0",
|
2017-10-14 21:52:15 +00:00
|
|
|
"send": "0.16.1",
|
2018-05-06 08:56:25 +00:00
|
|
|
"source-map": "0.5.7",
|
2017-12-08 22:38:28 +00:00
|
|
|
"strip-ansi": "3.0.1",
|
2018-03-12 17:50:23 +00:00
|
|
|
"styled-jsx": "2.2.6",
|
2017-07-01 06:05:06 +00:00
|
|
|
"touch": "3.1.0",
|
2018-01-30 15:40:52 +00:00
|
|
|
"uglifyjs-webpack-plugin": "1.1.6",
|
2017-06-28 17:02:12 +00:00
|
|
|
"unfetch": "3.0.0",
|
2018-05-01 21:43:20 +00:00
|
|
|
"update-check": "1.4.0",
|
2016-10-05 23:52:50 +00:00
|
|
|
"url": "0.11.0",
|
2017-06-17 08:54:14 +00:00
|
|
|
"uuid": "3.1.0",
|
2017-09-09 09:37:21 +00:00
|
|
|
"walk": "2.3.9",
|
2018-01-30 15:40:52 +00:00
|
|
|
"webpack": "3.10.0",
|
2017-09-27 18:11:02 +00:00
|
|
|
"webpack-dev-middleware": "1.12.0",
|
2018-02-25 18:05:47 +00:00
|
|
|
"webpack-hot-middleware": "2.19.1",
|
2018-02-11 12:09:06 +00:00
|
|
|
"webpack-sources": "1.1.0",
|
2018-02-21 17:41:25 +00:00
|
|
|
"write-file-webpack-plugin": "4.2.0"
|
2016-10-05 23:52:50 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-04-03 07:39:35 +00:00
|
|
|
"@babel/preset-flow": "7.0.0-beta.43",
|
2018-04-03 07:34:07 +00:00
|
|
|
"@taskr/babel": "1.1.0-next.1",
|
2017-09-27 18:11:02 +00:00
|
|
|
"@taskr/clear": "1.1.0",
|
|
|
|
"@taskr/esnext": "1.1.0",
|
|
|
|
"@taskr/watch": "1.1.0",
|
2018-02-05 16:18:31 +00:00
|
|
|
"@zeit/next-css": "0.0.7",
|
2018-03-27 18:11:03 +00:00
|
|
|
"babel-eslint": "8.2.2",
|
2017-09-27 18:11:02 +00:00
|
|
|
"babel-jest": "21.2.0",
|
|
|
|
"babel-plugin-istanbul": "4.1.5",
|
2016-12-26 03:29:53 +00:00
|
|
|
"babel-plugin-transform-remove-strict-mode": "0.0.2",
|
2017-03-30 18:19:56 +00:00
|
|
|
"benchmark": "2.1.4",
|
2017-02-16 22:53:39 +00:00
|
|
|
"cheerio": "0.22.0",
|
2017-09-27 18:11:02 +00:00
|
|
|
"chromedriver": "2.32.3",
|
2018-02-02 14:43:36 +00:00
|
|
|
"clone": "2.1.1",
|
2017-04-30 14:31:51 +00:00
|
|
|
"coveralls": "2.13.1",
|
2017-09-27 18:11:02 +00:00
|
|
|
"cross-env": "5.0.5",
|
|
|
|
"express": "4.15.5",
|
|
|
|
"fkill": "5.1.0",
|
2018-02-02 14:43:36 +00:00
|
|
|
"get-port": "3.2.0",
|
2017-07-05 12:16:38 +00:00
|
|
|
"husky": "0.14.3",
|
2017-09-27 18:11:02 +00:00
|
|
|
"jest-cli": "21.2.0",
|
|
|
|
"lint-staged": "4.2.3",
|
2018-02-02 14:43:36 +00:00
|
|
|
"micro": "9.1.0",
|
2018-01-31 07:35:10 +00:00
|
|
|
"mkdirp": "0.5.1",
|
2017-09-27 18:11:02 +00:00
|
|
|
"node-fetch": "1.7.3",
|
2017-03-16 12:49:15 +00:00
|
|
|
"node-notifier": "5.1.2",
|
2017-09-27 18:11:02 +00:00
|
|
|
"nyc": "11.2.1",
|
2018-01-30 15:40:52 +00:00
|
|
|
"react": "16.2.0",
|
|
|
|
"react-dom": "16.2.0",
|
2018-01-31 07:35:10 +00:00
|
|
|
"rimraf": "2.6.2",
|
2018-03-27 18:11:03 +00:00
|
|
|
"standard": "11.0.1",
|
2017-09-27 18:11:02 +00:00
|
|
|
"taskr": "1.1.0",
|
|
|
|
"wd": "1.4.1"
|
2017-02-08 04:41:38 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2017-09-27 19:09:16 +00:00
|
|
|
"react": "^16.0.0",
|
|
|
|
"react-dom": "^16.0.0"
|
2016-12-12 12:31:49 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
2017-01-12 04:14:49 +00:00
|
|
|
"testEnvironment": "node",
|
2017-02-22 18:08:49 +00:00
|
|
|
"roots": [
|
2017-01-12 04:14:49 +00:00
|
|
|
"test/"
|
|
|
|
]
|
2016-10-10 04:18:56 +00:00
|
|
|
}
|
2016-10-05 23:52:50 +00:00
|
|
|
}
|