2016-10-05 23:52:50 +00:00
|
|
|
{
|
2016-10-25 06:11:00 +00:00
|
|
|
"name": "next",
|
2017-02-13 17:32:05 +00:00
|
|
|
"version": "2.0.0-beta.25",
|
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",
|
2016-12-31 14:01:20 +00:00
|
|
|
"publishConfig": {
|
|
|
|
"tag": "beta"
|
|
|
|
},
|
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",
|
2016-10-29 17:12:54 +00:00
|
|
|
"link.js",
|
|
|
|
"css.js",
|
2016-12-16 19:25:40 +00:00
|
|
|
"head.js",
|
|
|
|
"document.js",
|
2016-12-22 01:40:26 +00:00
|
|
|
"prefetch.js",
|
2017-02-08 19:59:33 +00:00
|
|
|
"router.js",
|
|
|
|
"error.js"
|
2016-10-05 23:52:50 +00:00
|
|
|
],
|
|
|
|
"bin": {
|
|
|
|
"next": "./dist/bin/next"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2017-02-09 19:33:08 +00:00
|
|
|
"build": "fly",
|
|
|
|
"release": "fly release",
|
|
|
|
"pretestonly": "fly pretest",
|
2017-01-12 04:14:49 +00:00
|
|
|
"testonly": "cross-env NODE_PATH=test/lib jest \\.test.js",
|
2017-02-09 19:33:08 +00:00
|
|
|
"posttestonly": "fly posttest",
|
2017-01-12 04:14:49 +00:00
|
|
|
"pretest": "npm run lint && cross-env NODE_ENV=test npm run release",
|
|
|
|
"test": "npm run testonly -- --coverage --forceExit",
|
|
|
|
"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-01-12 04:14:49 +00:00
|
|
|
"prepublish": "npm run test && npm run release",
|
2016-10-17 00:52:12 +00:00
|
|
|
"precommit": "npm run lint"
|
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": [
|
|
|
|
"**/node_modules/**"
|
|
|
|
]
|
2016-10-25 18:47:03 +00:00
|
|
|
},
|
2016-10-05 23:52:50 +00:00
|
|
|
"dependencies": {
|
2016-12-16 20:33:08 +00:00
|
|
|
"accepts": "1.3.3",
|
2017-01-02 05:20:57 +00:00
|
|
|
"ansi-html": "0.0.7",
|
2017-01-20 06:41:11 +00:00
|
|
|
"babel-core": "6.22.1",
|
2017-01-20 07:16:02 +00:00
|
|
|
"babel-generator": "6.22.0",
|
2016-12-18 15:36:46 +00:00
|
|
|
"babel-loader": "6.2.10",
|
2017-02-05 19:50:08 +00:00
|
|
|
"babel-plugin-module-resolver": "2.5.0",
|
2016-11-28 11:46:42 +00:00
|
|
|
"babel-plugin-react-require": "^3.0.0",
|
2017-01-20 07:15:05 +00:00
|
|
|
"babel-plugin-transform-class-properties": "6.22.0",
|
2017-02-03 20:18:44 +00:00
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "6.22.0",
|
2017-01-20 07:14:44 +00:00
|
|
|
"babel-plugin-transform-object-rest-spread": "6.22.0",
|
2017-02-14 01:54:01 +00:00
|
|
|
"babel-plugin-transform-react-jsx-source": "^6.22.0",
|
2017-02-10 19:05:13 +00:00
|
|
|
"babel-plugin-transform-react-remove-prop-types": "^0.3.2",
|
2017-01-20 07:14:10 +00:00
|
|
|
"babel-plugin-transform-runtime": "6.22.0",
|
2017-02-08 12:05:25 +00:00
|
|
|
"babel-preset-latest": "6.22.0",
|
2017-02-14 01:44:19 +00:00
|
|
|
"babel-preset-react": "6.23.0",
|
2017-01-20 06:41:22 +00:00
|
|
|
"babel-runtime": "6.22.0",
|
2017-01-09 02:12:29 +00:00
|
|
|
"case-sensitive-paths-webpack-plugin": "1.1.4",
|
2016-11-21 11:46:49 +00:00
|
|
|
"cross-spawn": "5.0.1",
|
2016-10-17 03:55:33 +00:00
|
|
|
"del": "2.2.2",
|
2017-01-16 03:59:02 +00:00
|
|
|
"friendly-errors-webpack-plugin": "1.1.3",
|
2017-01-17 07:20:43 +00:00
|
|
|
"glamor": "2.20.22",
|
2016-12-18 15:36:46 +00:00
|
|
|
"glob-promise": "3.1.0",
|
2016-10-05 23:52:50 +00:00
|
|
|
"htmlescape": "1.1.1",
|
2016-12-05 17:08:45 +00:00
|
|
|
"is-windows-bash": "1.0.3",
|
2016-10-29 10:44:10 +00:00
|
|
|
"json-loader": "0.5.4",
|
2016-10-15 16:17:27 +00:00
|
|
|
"loader-utils": "0.2.16",
|
2017-01-15 08:19:36 +00:00
|
|
|
"mime-types": "2.1.14",
|
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",
|
2016-12-01 11:58:50 +00:00
|
|
|
"mz": "2.6.0",
|
2016-10-05 23:52:50 +00:00
|
|
|
"path-match": "1.2.4",
|
2017-02-01 20:36:23 +00:00
|
|
|
"pkg-up": "1.0.0",
|
2016-10-14 15:05:08 +00:00
|
|
|
"react-hot-loader": "3.0.0-beta.6",
|
2016-10-05 23:52:50 +00:00
|
|
|
"send": "0.14.1",
|
2017-01-27 21:33:39 +00:00
|
|
|
"source-map-support": "0.4.11",
|
2016-11-04 10:29:39 +00:00
|
|
|
"strip-ansi": "3.0.1",
|
2017-02-13 21:57:17 +00:00
|
|
|
"styled-jsx": "0.5.5",
|
2016-10-05 23:52:50 +00:00
|
|
|
"url": "0.11.0",
|
2017-01-11 20:16:18 +00:00
|
|
|
"uuid": "3.0.1",
|
2017-01-31 05:38:43 +00:00
|
|
|
"webpack": "2.2.1",
|
2017-02-01 20:37:14 +00:00
|
|
|
"webpack-dev-middleware": "1.10.0",
|
2017-01-30 18:51:33 +00:00
|
|
|
"webpack-hot-middleware": "2.16.1",
|
2016-11-21 11:46:49 +00:00
|
|
|
"write-file-webpack-plugin": "3.4.2"
|
2016-10-05 23:52:50 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-11-21 11:46:49 +00:00
|
|
|
"babel-eslint": "7.1.1",
|
2017-01-12 04:14:49 +00:00
|
|
|
"babel-jest": "^18.0.0",
|
|
|
|
"babel-plugin-istanbul": "^3.0.0",
|
2016-12-26 03:29:53 +00:00
|
|
|
"babel-plugin-transform-remove-strict-mode": "0.0.2",
|
2017-01-10 19:42:24 +00:00
|
|
|
"babel-preset-env": "1.1.8",
|
2016-12-24 17:27:50 +00:00
|
|
|
"benchmark": "2.1.3",
|
2017-01-12 04:14:49 +00:00
|
|
|
"cheerio": "^0.22.0",
|
|
|
|
"chromedriver": "^2.26.1",
|
2017-02-05 21:11:36 +00:00
|
|
|
"coveralls": "2.11.16",
|
2017-02-08 12:05:25 +00:00
|
|
|
"cross-env": "^3.1.4",
|
2017-02-09 20:37:18 +00:00
|
|
|
"fly": "^2.0.4",
|
2017-02-09 19:33:08 +00:00
|
|
|
"fly-babel": "^2.1.1",
|
|
|
|
"fly-clear": "^1.0.1",
|
|
|
|
"fly-esnext": "^2.0.0",
|
|
|
|
"fly-watch": "^1.1.1",
|
2017-01-23 12:50:07 +00:00
|
|
|
"husky": "0.13.1",
|
2017-01-12 04:14:49 +00:00
|
|
|
"jest-cli": "^18.0.0",
|
|
|
|
"node-fetch": "^1.6.3",
|
2017-02-09 19:33:08 +00:00
|
|
|
"node-notifier": "^5.0.2",
|
2016-12-12 12:31:49 +00:00
|
|
|
"nyc": "^10.0.0",
|
2017-02-09 13:49:32 +00:00
|
|
|
"react": "15.4.2",
|
|
|
|
"react-dom": "15.4.2",
|
2016-12-01 11:50:35 +00:00
|
|
|
"standard": "8.6.0",
|
2017-02-09 19:33:08 +00:00
|
|
|
"wd": "^1.1.3"
|
2017-02-08 04:41:38 +00:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"react": "^15.4.2",
|
|
|
|
"react-dom": "^15.4.2"
|
2016-12-12 12:31:49 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
2017-01-12 04:14:49 +00:00
|
|
|
"testEnvironment": "node",
|
|
|
|
"testPathDirs": [
|
|
|
|
"test/"
|
|
|
|
]
|
2016-10-10 04:18:56 +00:00
|
|
|
}
|
2016-10-05 23:52:50 +00:00
|
|
|
}
|