1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/package.json

97 lines
2.6 KiB
JSON
Raw Normal View History

2016-10-05 23:52:50 +00:00
{
2016-10-25 06:11:00 +00:00
"name": "next",
2016-12-02 14:06:18 +00:00
"version": "1.2.3",
2016-10-25 18:47:03 +00:00
"description": "Minimalistic framework for server-rendered React applications",
"main": "./dist/server/next.js",
2016-10-10 04:18:56 +00:00
"license": "MIT",
"repository": "zeit/next.js",
2016-10-05 23:52:50 +00:00
"files": [
"dist",
"link.js",
"css.js",
2016-12-16 19:25:40 +00:00
"head.js",
"document.js",
"prefetch.js"
2016-10-05 23:52:50 +00:00
],
"bin": {
"next": "./dist/bin/next"
},
"scripts": {
"build": "gulp",
2016-11-15 08:24:20 +00:00
"pretest": "npm run lint",
"test": "gulp test",
2016-12-12 12:31:49 +00:00
"html-report": "nyc report --temp-directory=./coverage --reporter=html",
"jest": "jest --coverage",
"coveralls": "nyc report --temp-directory=./coverage --reporter=text-lcov | coveralls",
"lint": "standard && standard bin/*",
2016-10-25 07:45:12 +00:00
"prepublish": "gulp release",
"precommit": "npm run lint"
2016-10-05 23:52:50 +00:00
},
2016-10-25 18:47:03 +00:00
"standard": {
"parser": "babel-eslint"
},
2016-10-05 23:52:50 +00:00
"dependencies": {
"accepts": "1.3.3",
"ansi-html": "0.0.6",
2016-12-18 15:36:46 +00:00
"babel-core": "6.21.0",
"babel-generator": "6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-module-resolver": "2.4.0",
"babel-plugin-react-require": "^3.0.0",
2016-10-05 23:52:50 +00:00
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-class-properties": "6.19.0",
"babel-plugin-transform-object-rest-spread": "6.20.2",
2016-10-05 23:52:50 +00:00
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
2016-10-05 23:52:50 +00:00
"babel-preset-react": "6.16.0",
"babel-runtime": "6.20.0",
2016-12-16 18:42:40 +00:00
"chokidar": "1.6.1",
"cross-spawn": "5.0.1",
2016-10-17 03:55:33 +00:00
"del": "2.2.2",
"friendly-errors-webpack-plugin": "1.1.2",
"glamor": "2.20.12",
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",
"is-windows-bash": "1.0.3",
"json-loader": "0.5.4",
2016-10-15 16:17:27 +00:00
"loader-utils": "0.2.16",
2016-10-05 23:52:50 +00:00
"minimist": "1.2.0",
"mkdirp-then": "1.2.0",
"mz": "2.6.0",
2016-10-05 23:52:50 +00:00
"path-match": "1.2.4",
"react": "15.4.1",
"react-dom": "15.4.1",
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",
"source-map-support": "0.4.6",
2016-11-04 10:29:39 +00:00
"strip-ansi": "3.0.1",
"styled-jsx": "0.2.1",
2016-10-05 23:52:50 +00:00
"url": "0.11.0",
"webpack": "1.14.0",
2016-12-18 15:36:46 +00:00
"webpack-dev-middleware": "1.9.0",
"webpack-hot-middleware": "2.13.2",
"write-file-webpack-plugin": "3.4.2"
2016-10-05 23:52:50 +00:00
},
"devDependencies": {
"babel-eslint": "7.1.1",
2016-12-18 15:36:46 +00:00
"babel-preset-env": "1.1.4",
"benchmark": "2.1.2",
2016-11-15 08:24:20 +00:00
"coveralls": "2.11.15",
2016-10-05 23:52:50 +00:00
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
2016-10-25 16:27:02 +00:00
"gulp-benchmark": "1.1.1",
"gulp-cached": "1.1.1",
2016-12-12 12:31:49 +00:00
"gulp-jest": "^0.6.0",
2016-10-05 23:52:50 +00:00
"gulp-notify": "2.2.0",
2016-12-18 15:36:46 +00:00
"husky": "0.12.0",
"jest": "^18.0.0",
2016-12-12 12:31:49 +00:00
"nyc": "^10.0.0",
2016-10-17 07:24:38 +00:00
"run-sequence": "1.2.2",
"standard": "8.6.0",
2016-10-05 23:52:50 +00:00
"webpack-stream": "3.2.0"
2016-12-12 12:31:49 +00:00
},
"jest": {
"testEnvironment": "node"
2016-10-10 04:18:56 +00:00
}
2016-10-05 23:52:50 +00:00
}