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

70 lines
1.6 KiB
JSON
Raw Normal View History

2016-10-05 23:52:50 +00:00
{
"name": "@zeit/next",
"version": "0.0.0",
"description": "",
"main": "./dist/lib/index.js",
2016-10-10 04:18:56 +00:00
"license": "MIT",
2016-10-05 23:52:50 +00:00
"files": [
"dist"
],
"bin": {
"next": "./dist/bin/next"
},
"scripts": {
"build": "gulp",
2016-10-12 23:15:58 +00:00
"test": "gulp test"
2016-10-05 23:52:50 +00:00
},
"dependencies": {
2016-10-06 02:42:55 +00:00
"aphrodite": "0.5.0",
2016-10-05 23:52:50 +00:00
"babel-core": "6.17.0",
"babel-generator": "6.17.0",
"babel-loader": "6.2.5",
"babel-plugin-module-alias": "1.6.0",
"babel-plugin-transform-async-to-generator": "6.16.0",
"babel-plugin-transform-class-properties": "6.16.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.16.0",
"babel-preset-react": "6.16.0",
"babel-runtime": "6.11.6",
"cross-spawn": "4.0.2",
"glob-promise": "1.0.6",
2016-10-13 20:01:11 +00:00
"gulp-benchmark": "^1.1.1",
2016-10-05 23:52:50 +00:00
"htmlescape": "1.1.1",
"minimist": "1.2.0",
"mkdirp-then": "1.2.0",
"mz": "2.4.0",
"path-match": "1.2.4",
"react": "15.3.2",
"react-dom": "15.3.2",
2016-10-08 12:01:58 +00:00
"resolve": "1.1.7",
2016-10-10 04:18:56 +00:00
"run-sequence": "1.2.2",
2016-10-05 23:52:50 +00:00
"send": "0.14.1",
"url": "0.11.0",
"webpack": "1.13.2"
},
"devDependencies": {
2016-10-06 02:42:55 +00:00
"del": "2.2.2",
2016-10-05 23:52:50 +00:00
"gulp": "3.9.1",
2016-10-10 04:18:56 +00:00
"gulp-ava": "0.14.1",
2016-10-05 23:52:50 +00:00
"gulp-babel": "6.1.2",
"gulp-cached": "1.1.0",
"gulp-notify": "2.2.0",
"webpack-stream": "3.2.0"
},
2016-10-10 04:18:56 +00:00
"ava": {
"babel": {
"presets": [
"es2015",
"react"
],
"plugins": [
"transform-async-to-generator",
"transform-object-rest-spread",
"transform-class-properties",
"transform-runtime"
]
}
}
2016-10-05 23:52:50 +00:00
}