mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
Normalize example package.json files (#2350)
This commit is contained in:
parent
1abfe108c0
commit
f14297dc80
|
@ -11,6 +11,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "custom-server-express",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "custom-server-hapi",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"name": "custom-server-koa",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "custom-server",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -12,6 +12,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -7,10 +7,9 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -7,10 +7,9 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "hello-world",
|
||||
"name": "layout-component",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
|
@ -7,10 +7,9 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -7,10 +7,9 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "parameterized-routing",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"name": "progressive-render",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "root-static-files",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,18 +1,15 @@
|
|||
{
|
||||
"name": "shared-modules",
|
||||
"version": "1.0.0",
|
||||
"description": "This example features:",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
"build": "next build",
|
||||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "ssr-caching",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -13,6 +13,5 @@
|
|||
"module-alias": "^2.0.0",
|
||||
"next": "latest"
|
||||
},
|
||||
"author": "",
|
||||
"license": "MIT"
|
||||
}
|
||||
|
|
|
@ -12,6 +12,5 @@
|
|||
"preact": "^7.2.0",
|
||||
"preact-compat": "^3.14.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
"name": "shared-modules",
|
||||
"name": "using-router",
|
||||
"version": "1.0.0",
|
||||
"description": "This example features:",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
"build": "next build",
|
||||
|
@ -13,6 +11,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "amp",
|
||||
"name": "with-amp",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
|
@ -11,6 +11,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -13,6 +13,5 @@
|
|||
"react": "^15.5.4",
|
||||
"react-dom": "^15.5.4"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-antd-mobile",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"antd-mobile": "^1.1.2",
|
||||
"babel-plugin-import": "^1.1.1",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-firebase",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -12,6 +12,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -13,6 +13,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"name": "next.js-css-global-style-test",
|
||||
"name": "with-global-stylesheet",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
|
|
|
@ -11,6 +11,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -9,11 +9,10 @@
|
|||
"dependencies": {
|
||||
"i18next": "^7.1.3",
|
||||
"isomorphic-fetch": "^2.2.1",
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2",
|
||||
"react-i18next": "^2.2.1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"name": "with-jest",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"next": "latest",
|
||||
"react": "^15.5.4",
|
||||
|
|
|
@ -14,6 +14,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-material-ui-next",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"material-ui": "next",
|
||||
"next": "latest",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-material-ui",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"material-ui": "^0.18.0",
|
||||
"next": "latest",
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"devDependencies": {
|
||||
"babel-plugin-transform-decorators-legacy": "^1.3.4"
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-next-routes",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-pretty-url-routing",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "hello-world",
|
||||
"name": "with-react-ga",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
|
@ -7,7 +7,7 @@
|
|||
"start": "next start"
|
||||
},
|
||||
"dependencies": {
|
||||
"next": "*",
|
||||
"next": "latest",
|
||||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2",
|
||||
"react-ga": "2.2.0"
|
||||
|
|
|
@ -16,6 +16,5 @@
|
|||
"react-dom": "^15.4.2",
|
||||
"react-intl": "^2.2.3"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -14,6 +14,5 @@
|
|||
"react-dom": "^15.4.2",
|
||||
"react-md": "^1.0.1"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -16,6 +16,5 @@
|
|||
"redux": "^3.6.0",
|
||||
"redux-thunk": "^2.1.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,12 +1,9 @@
|
|||
{
|
||||
"name": "next.js-example-with-refnux",
|
||||
"name": "with-refnux",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"next": "next"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"next": "latest",
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"name": "next.js-with-scoped-stylesheets-and-postcss",
|
||||
"name": "with-scoped-stylesheets-and-postcss",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"scripts": {
|
||||
"dev": "next dev",
|
||||
"build": "next build",
|
||||
|
|
|
@ -12,6 +12,5 @@
|
|||
"react-dom": "^15.4.2",
|
||||
"semantic-ui-react": "^0.68.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -11,6 +11,5 @@
|
|||
"react": "^15.4.2",
|
||||
"react-dom": "^15.4.2"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-socket.io",
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"express": "^4.15.2",
|
||||
"isomorphic-fetch": "^2.2.1",
|
||||
|
|
|
@ -13,6 +13,5 @@
|
|||
"react-dom": "^15.4.2",
|
||||
"styled-components": "^2.0.0-17"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-sw-precache",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"build": "next build",
|
||||
"start": "NODE_ENV=production node server.js"
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-typescript",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "concurrently \"tsc --watch\" next"
|
||||
},
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "with-env",
|
||||
"name": "with-universal-configuration",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "next",
|
||||
|
@ -14,6 +14,5 @@
|
|||
"devDependencies": {
|
||||
"babel-plugin-transform-define": "^1.2.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
{
|
||||
"name": "with-url-object-routing",
|
||||
"version": "1.0.0",
|
||||
"scripts": {
|
||||
"dev": "node server.js",
|
||||
"build": "next build",
|
||||
|
|
|
@ -13,6 +13,5 @@
|
|||
"react-dom": "^15.4.2",
|
||||
"webpack-bundle-analyzer": "^2.3.0"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue