Skip to content

Update package.json to include the repository #1752

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions examples/basic-spa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "serve -s build/public"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/basic-spa"
},
"dependencies": {
"react": "^17.0.1",
"react-dom": "^17.0.1"
Expand Down
5 changes: 5 additions & 0 deletions examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/basic"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-custom-babel-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-custom-babel-config"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
6 changes: 6 additions & 0 deletions examples/with-custom-devserver-options/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},

"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-custom-devserver-options"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-custom-environment-variables/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-custom-environment-variables"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-custom-webpack-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/custom.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-custom-webpack-config"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-elm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "set NODE_ENV=production&&node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-elm"
},
"dependencies": {
"elm-static-html-lib": "^0.1.0",
"express": "^4.17.1"
Expand Down
5 changes: 5 additions & 0 deletions examples/with-firebase-functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"predeploy": "npm run build",
"deploy": "firebase deploy"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-firebase-functions"
},
"dependencies": {
"express": "^4.17.1",
"firebase-admin": "^8.11.0",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-heroku/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
"start:prod": "NODE_ENV=production node build/server.js",
"deploy": "git push heroku master"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-heroku"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-hyperapp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-hyperapp"
},
"dependencies": {
"@hyperapp/render": "^2.1.0",
"express": "^4.17.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-inferno/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-inferno"
},
"dependencies": {
"express": "^4.17.1",
"inferno": "7.4.2",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-jest-snapshots/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"build": "razzle build",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-jest-snapshots"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-jsxstyle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-jsxstyle"
},
"dependencies": {
"express": "^4.17.1",
"jsxstyle": "^2.3.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-koa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"build": "razzle build",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-koa"
},
"dependencies": {
"koa": "^2.13.1",
"koa-helmet": "^6.1.0",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-loadable-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-loadable-components"
},
"dependencies": {
"@loadable/component": "^5.15.0",
"@loadable/server": "^5.15.0",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-material-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-material-ui"
},
"dependencies": {
"@material-ui/core": "^4.9.11",
"express": "^4.17.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-mdx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-mdx"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-now/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
"start:prod": "NODE_ENV=production node build/server.js",
"now-start": "yarn start:prod"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-now"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-polka/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-polka"
},
"dependencies": {
"polka": "^0.5.2",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-preact/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"preact-render-to-string": "^5.1.6",
"react": "^17.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-preact"
},
"devDependencies": {
"@prefresh/babel-plugin": "^0.2.0",
"@prefresh/webpack": "^2.0.0",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-react-native-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-react-native-web"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-reason-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-reason-react"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-redux/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-redux"
},
"dependencies": {
"express": "^4.17.1",
"prop-types": "^15.7.2",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-scss/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-scss"
},
"resolutions": {
"postcss": "8.2.4"
},
Expand Down
5 changes: 5 additions & 0 deletions examples/with-styled-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-styled-components"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-typescript-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
"react-dom": "^17.0.1",
"react-router-dom": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-typescript-plugin"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "^26.0.20",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-vendor-bundle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"test": "razzle test --env=jsdom",
"start:prod": "NODE_ENV=production node build/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-vendor-bundle"
},
"dependencies": {
"express": "^4.17.1",
"react": "^17.0.1",
Expand Down
5 changes: 5 additions & 0 deletions examples/with-webpack-public-path/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jaredpalmer/razzle.git",
"directory": "examples/with-webpack-public-path"
},
"devDependencies": {
"razzle": "4.2.6",
"razzle-dev-utils": "4.2.6",
Expand Down