diff --git a/check-examples.sh b/check-examples.sh new file mode 100755 index 000000000000..03dcbb6f638e --- /dev/null +++ b/check-examples.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +cd `dirname $0` + +for folder in examples/* ; do + cp -n packages/create-next-app/templates/default/gitignore $folder/.gitignore; + if [ -f "$folder/package.json" ]; then + cat $folder/package.json | jq '.license = "MIT"' | sponge $folder/package.json + fi +done; + +if [[ ! -z $(git status -s) ]];then + echo "Detected changes" + git status + exit 1 +fi diff --git a/check-git-ignore.sh b/check-git-ignore.sh deleted file mode 100755 index a200512cf3f5..000000000000 --- a/check-git-ignore.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -cd `dirname $0` - -for folder in examples/* ; - do cp -n packages/create-next-app/templates/default/gitignore $folder/.gitignore; -done; - -if [[ ! -z $(git status -s) ]];then - echo "Detected changes" - git status - exit 1 -fi diff --git a/examples/active-class-name/package.json b/examples/active-class-name/package.json index feb47ede884f..a08741654ad6 100644 --- a/examples/active-class-name/package.json +++ b/examples/active-class-name/package.json @@ -12,5 +12,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/amp-first/package.json b/examples/amp-first/package.json index c30040c7d230..3c62fecf57f3 100644 --- a/examples/amp-first/package.json +++ b/examples/amp-first/package.json @@ -11,5 +11,5 @@ "react": "^16.10.2", "react-dom": "^16.10.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/amp-story/package.json b/examples/amp-story/package.json index c5b61de231dd..d577702ebefa 100644 --- a/examples/amp-story/package.json +++ b/examples/amp-story/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/amp/package.json b/examples/amp/package.json index 906426c7a4ee..d033597980c0 100644 --- a/examples/amp/package.json +++ b/examples/amp/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/analyze-bundles/package.json b/examples/analyze-bundles/package.json index 49db7282fda0..4de8f0b322db 100644 --- a/examples/analyze-bundles/package.json +++ b/examples/analyze-bundles/package.json @@ -15,5 +15,5 @@ "react": "^16.8.0", "react-dom": "^16.8.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-apollo-server-and-client-auth/package.json b/examples/api-routes-apollo-server-and-client-auth/package.json index 5eb3bf246717..792ad1f6e177 100644 --- a/examples/api-routes-apollo-server-and-client-auth/package.json +++ b/examples/api-routes-apollo-server-and-client-auth/package.json @@ -18,5 +18,5 @@ "react-dom": "^16.7.0", "uuid": "8.1.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-apollo-server-and-client/package.json b/examples/api-routes-apollo-server-and-client/package.json index 94c93c4b7072..43263e3486f1 100644 --- a/examples/api-routes-apollo-server-and-client/package.json +++ b/examples/api-routes-apollo-server-and-client/package.json @@ -15,5 +15,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-apollo-server/package.json b/examples/api-routes-apollo-server/package.json index 7e67a47109a4..c42045d94020 100644 --- a/examples/api-routes-apollo-server/package.json +++ b/examples/api-routes-apollo-server/package.json @@ -14,5 +14,5 @@ "react": "16.13.1", "react-dom": "16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-cors/package.json b/examples/api-routes-cors/package.json index 3dfa9c496bce..0338eb264847 100644 --- a/examples/api-routes-cors/package.json +++ b/examples/api-routes-cors/package.json @@ -12,5 +12,5 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-graphql/package.json b/examples/api-routes-graphql/package.json index 3002140e0991..eb2b811a582b 100644 --- a/examples/api-routes-graphql/package.json +++ b/examples/api-routes-graphql/package.json @@ -14,5 +14,5 @@ "react-dom": "16.13.1", "swr": "0.1.18" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-middleware/package.json b/examples/api-routes-middleware/package.json index 747c705b41a1..a7e21e6f70ab 100644 --- a/examples/api-routes-middleware/package.json +++ b/examples/api-routes-middleware/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.8.6", "swr": "0.1.18" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes-rest/package.json b/examples/api-routes-rest/package.json index 2ccd1a3e68fe..883f3d7720f0 100644 --- a/examples/api-routes-rest/package.json +++ b/examples/api-routes-rest/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.8.6", "swr": "^0.1.18" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/api-routes/package.json b/examples/api-routes/package.json index b45f65e65a6e..f6156d9d3fa1 100644 --- a/examples/api-routes/package.json +++ b/examples/api-routes/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.8.6", "swr": "0.1.18" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/basic-css/package.json b/examples/basic-css/package.json index 3334fd60afff..99b864c87fd0 100644 --- a/examples/basic-css/package.json +++ b/examples/basic-css/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/basic-export/package.json b/examples/basic-export/package.json index 031909300b13..57baaf476310 100644 --- a/examples/basic-export/package.json +++ b/examples/basic-export/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/blog-starter-typescript/package.json b/examples/blog-starter-typescript/package.json index fbc972948866..9c1cb50c4481 100644 --- a/examples/blog-starter-typescript/package.json +++ b/examples/blog-starter-typescript/package.json @@ -26,5 +26,6 @@ "@types/react-dom": "^16.9.8", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.0" - } + }, + "license": "MIT" } diff --git a/examples/blog-starter/package.json b/examples/blog-starter/package.json index 5fdcc22b0edf..b720e7a34a85 100644 --- a/examples/blog-starter/package.json +++ b/examples/blog-starter/package.json @@ -19,5 +19,6 @@ "devDependencies": { "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.0" - } + }, + "license": "MIT" } diff --git a/examples/catch-all-routes/package.json b/examples/catch-all-routes/package.json index fd3227483d8c..75db743cd8aa 100644 --- a/examples/catch-all-routes/package.json +++ b/examples/catch-all-routes/package.json @@ -6,7 +6,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "react": "^16.12.0", diff --git a/examples/cms-agilitycms/package.json b/examples/cms-agilitycms/package.json index 46a306686916..ed8f641255d4 100644 --- a/examples/cms-agilitycms/package.json +++ b/examples/cms-agilitycms/package.json @@ -23,5 +23,6 @@ "@fullhuman/postcss-purgecss": "^2.1.0", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.2.0" - } + }, + "license": "MIT" } diff --git a/examples/cms-buttercms/package.json b/examples/cms-buttercms/package.json index 8d22234c9827..b793ed4a760f 100644 --- a/examples/cms-buttercms/package.json +++ b/examples/cms-buttercms/package.json @@ -19,5 +19,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-contentful/package.json b/examples/cms-contentful/package.json index b2a9f1253783..d8debfdab344 100644 --- a/examples/cms-contentful/package.json +++ b/examples/cms-contentful/package.json @@ -21,5 +21,6 @@ "contentful-import": "^7.7.12", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.2.0" - } + }, + "license": "MIT" } diff --git a/examples/cms-cosmic/package.json b/examples/cms-cosmic/package.json index 72397cf98477..c910def43c7e 100644 --- a/examples/cms-cosmic/package.json +++ b/examples/cms-cosmic/package.json @@ -23,5 +23,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-datocms/package.json b/examples/cms-datocms/package.json index 931ba48afa1a..fe3cad3b38dd 100644 --- a/examples/cms-datocms/package.json +++ b/examples/cms-datocms/package.json @@ -20,5 +20,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-graphcms/package.json b/examples/cms-graphcms/package.json index 445ad29018c5..f9e7ee019c84 100644 --- a/examples/cms-graphcms/package.json +++ b/examples/cms-graphcms/package.json @@ -17,5 +17,6 @@ "postcss-flexbugs-fixes": "^4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-kontent/package.json b/examples/cms-kontent/package.json index e6d45eb5cc82..3e04d79a337b 100644 --- a/examples/cms-kontent/package.json +++ b/examples/cms-kontent/package.json @@ -22,5 +22,6 @@ "postcss-flexbugs-fixes": "^4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.7.3" - } + }, + "license": "MIT" } diff --git a/examples/cms-prismic/package.json b/examples/cms-prismic/package.json index 159ee685813d..cd781ce550d3 100644 --- a/examples/cms-prismic/package.json +++ b/examples/cms-prismic/package.json @@ -19,5 +19,6 @@ "@fullhuman/postcss-purgecss": "^2.1.0", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.2.0" - } + }, + "license": "MIT" } diff --git a/examples/cms-sanity/package.json b/examples/cms-sanity/package.json index 28bdb80fdd14..fda3e469ce37 100644 --- a/examples/cms-sanity/package.json +++ b/examples/cms-sanity/package.json @@ -20,5 +20,6 @@ "@fullhuman/postcss-purgecss": "^2.1.0", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.2.0" - } + }, + "license": "MIT" } diff --git a/examples/cms-storyblok/package.json b/examples/cms-storyblok/package.json index 489593d61259..d11be814529c 100644 --- a/examples/cms-storyblok/package.json +++ b/examples/cms-storyblok/package.json @@ -20,5 +20,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-strapi/package.json b/examples/cms-strapi/package.json index 1a16f224441b..e4cd9f4477d0 100644 --- a/examples/cms-strapi/package.json +++ b/examples/cms-strapi/package.json @@ -20,5 +20,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/cms-takeshape/package.json b/examples/cms-takeshape/package.json index a51c7671808e..9bf88dccb1d2 100644 --- a/examples/cms-takeshape/package.json +++ b/examples/cms-takeshape/package.json @@ -20,5 +20,6 @@ "@fullhuman/postcss-purgecss": "^2.1.0", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.2.0" - } + }, + "license": "MIT" } diff --git a/examples/cms-wordpress/package.json b/examples/cms-wordpress/package.json index 131c56cc0d29..8661c63133b0 100644 --- a/examples/cms-wordpress/package.json +++ b/examples/cms-wordpress/package.json @@ -17,5 +17,6 @@ "postcss-flexbugs-fixes": "4.2.1", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.4.6" - } + }, + "license": "MIT" } diff --git a/examples/custom-routes-proxying/package.json b/examples/custom-routes-proxying/package.json index 352eb4ab8173..ea61fd4aee47 100644 --- a/examples/custom-routes-proxying/package.json +++ b/examples/custom-routes-proxying/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.13.1", "react-dom": "^16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-actionhero/package.json b/examples/custom-server-actionhero/package.json index a312aa1642b5..0bf2162e2bea 100644 --- a/examples/custom-server-actionhero/package.json +++ b/examples/custom-server-actionhero/package.json @@ -12,5 +12,6 @@ }, "scripts": { "start": "actionhero start" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-express/package.json b/examples/custom-server-express/package.json index 12dcf342c979..cbf851c65797 100644 --- a/examples/custom-server-express/package.json +++ b/examples/custom-server-express/package.json @@ -12,5 +12,6 @@ "next": "latest", "react": "^16.13.1", "react-dom": "^16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-fastify/package.json b/examples/custom-server-fastify/package.json index c4ef63115d86..9ab439daef88 100644 --- a/examples/custom-server-fastify/package.json +++ b/examples/custom-server-fastify/package.json @@ -12,5 +12,6 @@ "next": "latest", "react": "^16.13.0", "react-dom": "^16.13.0" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-hapi/package.json b/examples/custom-server-hapi/package.json index 4951723d89b3..9bfe06e809a0 100644 --- a/examples/custom-server-hapi/package.json +++ b/examples/custom-server-hapi/package.json @@ -12,5 +12,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-koa/package.json b/examples/custom-server-koa/package.json index 9102d4a8f6c2..663b17b96798 100644 --- a/examples/custom-server-koa/package.json +++ b/examples/custom-server-koa/package.json @@ -13,5 +13,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-polka/package.json b/examples/custom-server-polka/package.json index 9acf5128cba7..d5dcff3f19b0 100644 --- a/examples/custom-server-polka/package.json +++ b/examples/custom-server-polka/package.json @@ -12,5 +12,6 @@ "polka": "0.5.1", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/custom-server-typescript/package.json b/examples/custom-server-typescript/package.json index 8b6742cd11db..ab6f8cc01eaf 100644 --- a/examples/custom-server-typescript/package.json +++ b/examples/custom-server-typescript/package.json @@ -19,5 +19,6 @@ "nodemon": "^2.0.4", "ts-node": "^8.10.2", "typescript": "4.0" - } + }, + "license": "MIT" } diff --git a/examples/custom-server/package.json b/examples/custom-server/package.json index 56c262d3b767..724fd2bf64dc 100644 --- a/examples/custom-server/package.json +++ b/examples/custom-server/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.13.1", "react-dom": "^16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/dynamic-routing/package.json b/examples/dynamic-routing/package.json index 7b4cb1b6cd7d..e6b2f72eed4a 100644 --- a/examples/dynamic-routing/package.json +++ b/examples/dynamic-routing/package.json @@ -6,7 +6,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "react": "^16.13.1", diff --git a/examples/environment-variables/package.json b/examples/environment-variables/package.json index a08d4da95ecd..f65468155911 100644 --- a/examples/environment-variables/package.json +++ b/examples/environment-variables/package.json @@ -11,5 +11,5 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/gh-pages/package.json b/examples/gh-pages/package.json index db492c5c8ec2..56cfd8d96ef9 100644 --- a/examples/gh-pages/package.json +++ b/examples/gh-pages/package.json @@ -13,7 +13,7 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "babel-plugin-transform-define": "^1.3.0" } diff --git a/examples/head-elements/package.json b/examples/head-elements/package.json index 69c6a6b2e304..36508264dba1 100644 --- a/examples/head-elements/package.json +++ b/examples/head-elements/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index bcae91c8a5f0..464a98784700 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -11,5 +11,5 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/layout-component/package.json b/examples/layout-component/package.json index 44edc3621134..acd938fbce5b 100644 --- a/examples/layout-component/package.json +++ b/examples/layout-component/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/nested-components/package.json b/examples/nested-components/package.json index 1dc8b992b7f3..c1363a5a0f57 100644 --- a/examples/nested-components/package.json +++ b/examples/nested-components/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/progressive-render/package.json b/examples/progressive-render/package.json index c194bbed86f3..2845e72516c8 100644 --- a/examples/progressive-render/package.json +++ b/examples/progressive-render/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/redirects/package.json b/examples/redirects/package.json index 0d00e77f35f5..f4b3161ffe90 100644 --- a/examples/redirects/package.json +++ b/examples/redirects/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.13.1", "react-dom": "^16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/ssr-caching/package.json b/examples/ssr-caching/package.json index 92f27fc69aa5..d324864f016d 100644 --- a/examples/ssr-caching/package.json +++ b/examples/ssr-caching/package.json @@ -13,5 +13,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/svg-components/package.json b/examples/svg-components/package.json index 2559fbd757ab..b3adff554fc2 100644 --- a/examples/svg-components/package.json +++ b/examples/svg-components/package.json @@ -13,5 +13,6 @@ }, "devDependencies": { "babel-plugin-inline-react-svg": "^1.0.1" - } + }, + "license": "MIT" } diff --git a/examples/using-preact/package.json b/examples/using-preact/package.json index 1552a8b2bd8f..14a28fae73ba 100644 --- a/examples/using-preact/package.json +++ b/examples/using-preact/package.json @@ -17,5 +17,6 @@ "react": "github:preact-compat/react#1.0.0", "react-dom": "github:preact-compat/react-dom#1.0.0", "react-ssr-prepass": "npm:preact-ssr-prepass@^1.0.1" - } + }, + "license": "MIT" } diff --git a/examples/using-router/package.json b/examples/using-router/package.json index f5a097d4a830..57493c3f760a 100644 --- a/examples/using-router/package.json +++ b/examples/using-router/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-absolute-imports/package.json b/examples/with-absolute-imports/package.json index 1d16aa133b37..a8e3e04dd8fa 100644 --- a/examples/with-absolute-imports/package.json +++ b/examples/with-absolute-imports/package.json @@ -8,5 +8,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-algolia-react-instantsearch/package.json b/examples/with-algolia-react-instantsearch/package.json index 63ceb80b638e..ed2b535bff80 100644 --- a/examples/with-algolia-react-instantsearch/package.json +++ b/examples/with-algolia-react-instantsearch/package.json @@ -15,5 +15,6 @@ "react-dom": "^16.7.0", "react-instantsearch-dom": "6.6.0", "style-loader": "^0.17.0" - } + }, + "license": "MIT" } diff --git a/examples/with-ant-design-less/package.json b/examples/with-ant-design-less/package.json index 4327c4292444..268ca6c09392 100644 --- a/examples/with-ant-design-less/package.json +++ b/examples/with-ant-design-less/package.json @@ -17,5 +17,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-ant-design-mobile/package.json b/examples/with-ant-design-mobile/package.json index c91b03cadcea..8d6d62eda9d0 100644 --- a/examples/with-ant-design-mobile/package.json +++ b/examples/with-ant-design-mobile/package.json @@ -14,5 +14,6 @@ "dev": "next", "build": "next build", "start": "next start" - } + }, + "license": "MIT" } diff --git a/examples/with-ant-design-pro-layout-less/package.json b/examples/with-ant-design-pro-layout-less/package.json index b4ad5a9d10fc..95e949f66a97 100644 --- a/examples/with-ant-design-pro-layout-less/package.json +++ b/examples/with-ant-design-pro-layout-less/package.json @@ -21,7 +21,7 @@ "react-dom": "^16.13.1", "webpack-filter-warnings-plugin": "1.2.1" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "@types/node": "13.13.4", "@types/react": "^16.9.36", diff --git a/examples/with-ant-design/package.json b/examples/with-ant-design/package.json index 795b2eb4eaf8..ac99c2da7531 100755 --- a/examples/with-ant-design/package.json +++ b/examples/with-ant-design/package.json @@ -22,5 +22,6 @@ "browser": { "fs": false, "path": false - } + }, + "license": "MIT" } diff --git a/examples/with-aphrodite/package.json b/examples/with-aphrodite/package.json index c374b5f86b69..3cef2541e5de 100644 --- a/examples/with-aphrodite/package.json +++ b/examples/with-aphrodite/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.7.0" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-apollo-and-redux/package.json b/examples/with-apollo-and-redux/package.json index 32741eea7983..9bdb8727e7ef 100644 --- a/examples/with-apollo-and-redux/package.json +++ b/examples/with-apollo-and-redux/package.json @@ -16,5 +16,6 @@ "react-redux": "^7.1.1", "redux": "^4.0.1", "redux-devtools-extension": "2.13.8" - } + }, + "license": "MIT" } diff --git a/examples/with-apollo/package.json b/examples/with-apollo/package.json index a4332f86deb2..c176fb42e97e 100644 --- a/examples/with-apollo/package.json +++ b/examples/with-apollo/package.json @@ -15,5 +15,5 @@ "react-dom": "^16.7.0" }, "devDependencies": {}, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-app-layout/package.json b/examples/with-app-layout/package.json index 94c15d28e520..c1699406b035 100644 --- a/examples/with-app-layout/package.json +++ b/examples/with-app-layout/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-astroturf/package.json b/examples/with-astroturf/package.json index fade1e33a051..5dd4db93d71d 100644 --- a/examples/with-astroturf/package.json +++ b/examples/with-astroturf/package.json @@ -14,5 +14,5 @@ "react": "^16.8.6", "react-dom": "^16.8.6" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-atlaskit/package.json b/examples/with-atlaskit/package.json index f15f327a20ac..dee919b64aa4 100644 --- a/examples/with-atlaskit/package.json +++ b/examples/with-atlaskit/package.json @@ -20,5 +20,6 @@ }, "devDependencies": { "babel-plugin-styled-components": "^1.10.7" - } + }, + "license": "MIT" } diff --git a/examples/with-aws-amplify-typescript/package.json b/examples/with-aws-amplify-typescript/package.json index d3193ba471fc..7bd19b1d7a76 100644 --- a/examples/with-aws-amplify-typescript/package.json +++ b/examples/with-aws-amplify-typescript/package.json @@ -9,7 +9,7 @@ }, "keywords": [], "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "aws-amplify": "2.1.0", "immer": "3.1.3", diff --git a/examples/with-aws-amplify/package.json b/examples/with-aws-amplify/package.json index ae1b7b42dc57..860c82586104 100644 --- a/examples/with-aws-amplify/package.json +++ b/examples/with-aws-amplify/package.json @@ -6,7 +6,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "aws-amplify": "2.1.0", "immer": "3.1.3", diff --git a/examples/with-carbon-components/package.json b/examples/with-carbon-components/package.json index 1bbd07b42639..223888eac60a 100644 --- a/examples/with-carbon-components/package.json +++ b/examples/with-carbon-components/package.json @@ -8,7 +8,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "@carbon/icons-react": "^10.3.0", "carbon-components": "^10.3.0", diff --git a/examples/with-cerebral/package.json b/examples/with-cerebral/package.json index fce6ebdcb45b..2bf9201bf354 100644 --- a/examples/with-cerebral/package.json +++ b/examples/with-cerebral/package.json @@ -9,7 +9,7 @@ "start": "next start" }, "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "@cerebral/react": "^2.1.0", "cerebral": "^3.1.0", diff --git a/examples/with-chakra-ui/package.json b/examples/with-chakra-ui/package.json index 183012752c23..730ad332215f 100644 --- a/examples/with-chakra-ui/package.json +++ b/examples/with-chakra-ui/package.json @@ -15,5 +15,6 @@ "next": "^9.1.7", "react": "^16.12.0", "react-dom": "^16.12.0" - } + }, + "license": "MIT" } diff --git a/examples/with-context-api/package.json b/examples/with-context-api/package.json index 7c26a60ca417..0b3a359b23de 100644 --- a/examples/with-context-api/package.json +++ b/examples/with-context-api/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-cookie-auth-fauna/package.json b/examples/with-cookie-auth-fauna/package.json index 55016b9223d4..f4a9cdc8f95b 100644 --- a/examples/with-cookie-auth-fauna/package.json +++ b/examples/with-cookie-auth-fauna/package.json @@ -12,5 +12,6 @@ "react": "^16.8.6", "react-dom": "^16.8.6", "swr": "0.2.3" - } + }, + "license": "MIT" } diff --git a/examples/with-custom-babel-config/package.json b/examples/with-custom-babel-config/package.json index 8b3a3cde5680..4e8671958992 100644 --- a/examples/with-custom-babel-config/package.json +++ b/examples/with-custom-babel-config/package.json @@ -14,7 +14,7 @@ "react-dom": "^16.7.0" }, "author": "", - "license": "ISC", + "license": "MIT", "devDependencies": { "@babel/plugin-proposal-do-expressions": "7.0.0-rc.1" } diff --git a/examples/with-custom-reverse-proxy/package.json b/examples/with-custom-reverse-proxy/package.json index c19e0a0b48ab..a54c2e10557f 100644 --- a/examples/with-custom-reverse-proxy/package.json +++ b/examples/with-custom-reverse-proxy/package.json @@ -1,6 +1,6 @@ { "name": "with-custom-reverse-proxy", - "license": "ISC", + "license": "MIT", "dependencies": { "express": "^4.15.3", "next": "latest", diff --git a/examples/with-cxs/package.json b/examples/with-cxs/package.json index 8ac453d28b34..1690cdfbb49b 100644 --- a/examples/with-cxs/package.json +++ b/examples/with-cxs/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.7.0" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-docker/package.json b/examples/with-docker/package.json index b73f1d0562ba..25d305bb2c96 100644 --- a/examples/with-docker/package.json +++ b/examples/with-docker/package.json @@ -14,5 +14,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-draft-js/package.json b/examples/with-draft-js/package.json index 2280f403a169..24bc43f63cdb 100644 --- a/examples/with-draft-js/package.json +++ b/examples/with-draft-js/package.json @@ -2,7 +2,7 @@ "name": "with-draft-js", "version": "1.0.0", "author": "Asten Mies", - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-dynamic-app-layout/package.json b/examples/with-dynamic-app-layout/package.json index c6cf97f83ed6..813d031d6e6f 100644 --- a/examples/with-dynamic-app-layout/package.json +++ b/examples/with-dynamic-app-layout/package.json @@ -14,5 +14,5 @@ "react-dom": "^16.7.0" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-dynamic-import/package.json b/examples/with-dynamic-import/package.json index 430187735a20..de6c17c190be 100644 --- a/examples/with-dynamic-import/package.json +++ b/examples/with-dynamic-import/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.13.1" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-electron-typescript/package.json b/examples/with-electron-typescript/package.json index acdc15a55192..7093e088f329 100644 --- a/examples/with-electron-typescript/package.json +++ b/examples/with-electron-typescript/package.json @@ -35,5 +35,6 @@ "electron-next": "^3.1.5", "react": "^16.12.0", "react-dom": "^16.12.0" - } + }, + "license": "MIT" } diff --git a/examples/with-electron/package.json b/examples/with-electron/package.json index a096a852d5dc..38e82b565452 100644 --- a/examples/with-electron/package.json +++ b/examples/with-electron/package.json @@ -27,5 +27,6 @@ "dependencies": { "electron-is-dev": "^1.1.0", "electron-next": "^3.1.5" - } + }, + "license": "MIT" } diff --git a/examples/with-emotion-11/package.json b/examples/with-emotion-11/package.json index 9f7a375c6217..2dbf71810813 100644 --- a/examples/with-emotion-11/package.json +++ b/examples/with-emotion-11/package.json @@ -10,7 +10,7 @@ }, "keywords": [], "author": "Thomas Greco", - "license": "ISC", + "license": "MIT", "dependencies": { "@emotion/cache": "11.0.0-next.12", "@emotion/css": "11.0.0-next.12", diff --git a/examples/with-emotion/package.json b/examples/with-emotion/package.json index e4fa58f9ba08..006f8898a7b4 100644 --- a/examples/with-emotion/package.json +++ b/examples/with-emotion/package.json @@ -10,7 +10,7 @@ }, "keywords": [], "author": "Thomas Greco", - "license": "ISC", + "license": "MIT", "dependencies": { "@emotion/core": "10.0.27", "@emotion/styled": "10.0.27", diff --git a/examples/with-env-from-next-config-js/package.json b/examples/with-env-from-next-config-js/package.json index 4c8db2fafe0f..7feabc38d3d3 100644 --- a/examples/with-env-from-next-config-js/package.json +++ b/examples/with-env-from-next-config-js/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-expo-typescript/package.json b/examples/with-expo-typescript/package.json index f1741fd53ea4..fd3e89fe2695 100644 --- a/examples/with-expo-typescript/package.json +++ b/examples/with-expo-typescript/package.json @@ -30,5 +30,6 @@ "@types/react-native": "0.62.10", "babel-preset-expo": "~8.1.0", "typescript": "4.0" - } + }, + "license": "MIT" } diff --git a/examples/with-expo/package.json b/examples/with-expo/package.json index 56a19c92320c..0b30356230de 100644 --- a/examples/with-expo/package.json +++ b/examples/with-expo/package.json @@ -20,5 +20,6 @@ }, "devDependencies": { "@expo/next-adapter": "2.1.5" - } + }, + "license": "MIT" } diff --git a/examples/with-fela/package.json b/examples/with-fela/package.json index 5d2351593c1a..4b22381604ee 100755 --- a/examples/with-fela/package.json +++ b/examples/with-fela/package.json @@ -14,5 +14,6 @@ "react": "latest", "react-dom": "latest", "react-fela": "latest" - } + }, + "license": "MIT" } diff --git a/examples/with-filbert/package.json b/examples/with-filbert/package.json index 6acc42079e3a..e9e08fffe99f 100644 --- a/examples/with-filbert/package.json +++ b/examples/with-filbert/package.json @@ -10,7 +10,7 @@ }, "keywords": [], "author": "Kuldeep Keshwar", - "license": "ISC", + "license": "MIT", "dependencies": { "@filbert-js/core": "latest", "@filbert-js/macro": "latest", diff --git a/examples/with-firebase-authentication/package.json b/examples/with-firebase-authentication/package.json index ae0e24d926ec..8fa14c38cd77 100644 --- a/examples/with-firebase-authentication/package.json +++ b/examples/with-firebase-authentication/package.json @@ -15,5 +15,6 @@ "react-dom": "^16.13.1", "react-firebaseui": "4.1.0", "swr": "0.2.3" - } + }, + "license": "MIT" } diff --git a/examples/with-firebase-cloud-messaging/package.json b/examples/with-firebase-cloud-messaging/package.json index e8966a4dbe79..601b0de164ae 100644 --- a/examples/with-firebase-cloud-messaging/package.json +++ b/examples/with-firebase-cloud-messaging/package.json @@ -16,5 +16,6 @@ }, "devDependencies": { "next-offline": "^3.0.10" - } + }, + "license": "MIT" } diff --git a/examples/with-firebase-hosting/package.json b/examples/with-firebase-hosting/package.json index 470462a6d25e..7a70f855076c 100644 --- a/examples/with-firebase-hosting/package.json +++ b/examples/with-firebase-hosting/package.json @@ -22,5 +22,6 @@ "devDependencies": { "firebase-functions-test": "^0.1.6", "firebase-tools": "^8.6.0" - } + }, + "license": "MIT" } diff --git a/examples/with-framer-motion/package.json b/examples/with-framer-motion/package.json index fadd2fd5bd35..d1f44ab2ac4f 100644 --- a/examples/with-framer-motion/package.json +++ b/examples/with-framer-motion/package.json @@ -12,5 +12,5 @@ "react": "16.11.0", "react-dom": "16.11.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-glamor/package.json b/examples/with-glamor/package.json index c4e54b5ddd99..a4c20c36f1ff 100644 --- a/examples/with-glamor/package.json +++ b/examples/with-glamor/package.json @@ -13,5 +13,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-google-analytics-amp/package.json b/examples/with-google-analytics-amp/package.json index 7602fd66c608..727e374b1fd3 100644 --- a/examples/with-google-analytics-amp/package.json +++ b/examples/with-google-analytics-amp/package.json @@ -9,5 +9,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-google-analytics/package.json b/examples/with-google-analytics/package.json index 126e715bd103..9a59432dae3e 100644 --- a/examples/with-google-analytics/package.json +++ b/examples/with-google-analytics/package.json @@ -9,5 +9,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-graphql-faunadb/package.json b/examples/with-graphql-faunadb/package.json index 7e5b79e34468..23337d615e9f 100644 --- a/examples/with-graphql-faunadb/package.json +++ b/examples/with-graphql-faunadb/package.json @@ -17,5 +17,6 @@ "faunadb": "2.11.1", "request": "2.88.0", "stream-to-promise": "2.2.0" - } + }, + "license": "MIT" } diff --git a/examples/with-graphql-hooks/package.json b/examples/with-graphql-hooks/package.json index d8c0bfd811d5..2bc97a22cd0d 100644 --- a/examples/with-graphql-hooks/package.json +++ b/examples/with-graphql-hooks/package.json @@ -6,7 +6,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "graphql-hooks": "^4.5.0", "graphql-hooks-memcache": "^1.3.3", diff --git a/examples/with-graphql-react/package.json b/examples/with-graphql-react/package.json index e56b9d2ba830..b78b01c2ba83 100644 --- a/examples/with-graphql-react/package.json +++ b/examples/with-graphql-react/package.json @@ -1,7 +1,7 @@ { "name": "next-graphql-react-example", "private": true, - "license": "ISC", + "license": "MIT", "dependencies": { "graphql-react": "^11.0.1", "next": "latest", diff --git a/examples/with-grommet/package.json b/examples/with-grommet/package.json index 3e809ce95c19..6bd89d922ce2 100644 --- a/examples/with-grommet/package.json +++ b/examples/with-grommet/package.json @@ -16,5 +16,5 @@ "devDependencies": { "babel-plugin-styled-components": "^1.8.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-http2/package.json b/examples/with-http2/package.json index 1c1e4ae63a6a..90bd00f6518b 100644 --- a/examples/with-http2/package.json +++ b/examples/with-http2/package.json @@ -11,5 +11,5 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-i18n-rosetta/package.json b/examples/with-i18n-rosetta/package.json index 06d61053b968..d18f84c91a89 100644 --- a/examples/with-i18n-rosetta/package.json +++ b/examples/with-i18n-rosetta/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.13.1", "rosetta": "1.0.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-iron-session/package.json b/examples/with-iron-session/package.json index 7d1fe5dbe8ce..6e04d2da95b6 100644 --- a/examples/with-iron-session/package.json +++ b/examples/with-iron-session/package.json @@ -14,5 +14,6 @@ "react": "16.13.1", "react-dom": "16.13.1", "swr": "0.2.3" - } + }, + "license": "MIT" } diff --git a/examples/with-jest/package.json b/examples/with-jest/package.json index 25a6fa4b0f90..541e16fd8421 100644 --- a/examples/with-jest/package.json +++ b/examples/with-jest/package.json @@ -20,5 +20,6 @@ "identity-obj-proxy": "^3.0.0", "jest": "^25.1.0", "react-test-renderer": "^16.12.0" - } + }, + "license": "MIT" } diff --git a/examples/with-kea/package.json b/examples/with-kea/package.json index ec518c8c0ef8..52d015286899 100644 --- a/examples/with-kea/package.json +++ b/examples/with-kea/package.json @@ -17,7 +17,7 @@ "redux": "^4.0.0", "reselect": "^3.0.1" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "@babel/plugin-proposal-decorators": "^7.1.0" }, diff --git a/examples/with-linaria/package.json b/examples/with-linaria/package.json index 105fbd56aa31..e5080ac89212 100644 --- a/examples/with-linaria/package.json +++ b/examples/with-linaria/package.json @@ -13,5 +13,5 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-lingui/package.json b/examples/with-lingui/package.json index c2115ddcde65..f4312eb02ef0 100644 --- a/examples/with-lingui/package.json +++ b/examples/with-lingui/package.json @@ -30,5 +30,5 @@ ], "format": "po" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-loading/package.json b/examples/with-loading/package.json index ab0f1b9cfb82..7711da61f767 100644 --- a/examples/with-loading/package.json +++ b/examples/with-loading/package.json @@ -13,5 +13,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-magic/package.json b/examples/with-magic/package.json index b947fc0c915c..a481152b0242 100644 --- a/examples/with-magic/package.json +++ b/examples/with-magic/package.json @@ -15,5 +15,5 @@ "react-dom": "latest", "swr": "0.1.16" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-mdx/package.json b/examples/with-mdx/package.json index f6abadfcae65..0a52897f48a9 100644 --- a/examples/with-mdx/package.json +++ b/examples/with-mdx/package.json @@ -14,5 +14,5 @@ "react-dom": "^16.8.6" }, "devDependencies": {}, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-mobx-react-lite/package.json b/examples/with-mobx-react-lite/package.json index 10d5b4239a34..09024e8864f3 100644 --- a/examples/with-mobx-react-lite/package.json +++ b/examples/with-mobx-react-lite/package.json @@ -13,6 +13,6 @@ "react": "^16.8.4", "react-dom": "^16.8.4" }, - "license": "ISC", + "license": "MIT", "devDependencies": {} } diff --git a/examples/with-mobx-state-tree-typescript/package.json b/examples/with-mobx-state-tree-typescript/package.json index 5fd7f47cafd2..6ebad5b98280 100644 --- a/examples/with-mobx-state-tree-typescript/package.json +++ b/examples/with-mobx-state-tree-typescript/package.json @@ -21,5 +21,5 @@ "@types/node": "^14.0.23", "@types/react": "^16.4.12" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-mobx-state-tree/package.json b/examples/with-mobx-state-tree/package.json index 62b1959a2980..b029fa813c44 100644 --- a/examples/with-mobx-state-tree/package.json +++ b/examples/with-mobx-state-tree/package.json @@ -17,5 +17,5 @@ "devDependencies": { "@babel/plugin-proposal-decorators": "^7.1.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-mobx/package.json b/examples/with-mobx/package.json index e673b3265ad8..200eb69a0201 100644 --- a/examples/with-mobx/package.json +++ b/examples/with-mobx/package.json @@ -13,7 +13,7 @@ "react": "^16.13.1", "react-dom": "^16.13.1" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-proposal-decorators": "^7.1.0" diff --git a/examples/with-mocha/package.json b/examples/with-mocha/package.json index f00064fbe6c5..b860b86dbb68 100644 --- a/examples/with-mocha/package.json +++ b/examples/with-mocha/package.json @@ -20,5 +20,6 @@ "enzyme-adapter-react-16": "^1.15.2", "expect.js": "^0.3.1", "mocha": "^7.1.1" - } + }, + "license": "MIT" } diff --git a/examples/with-monaco-editor/package.json b/examples/with-monaco-editor/package.json index b188b4caed56..ca52a0f91019 100644 --- a/examples/with-monaco-editor/package.json +++ b/examples/with-monaco-editor/package.json @@ -16,5 +16,6 @@ "react": "16.13.1", "react-dom": "16.13.1", "react-monaco-editor": "^0.34.0" - } + }, + "license": "MIT" } diff --git a/examples/with-mongodb-mongoose/package.json b/examples/with-mongodb-mongoose/package.json index 1d143807e942..241b1abf9837 100644 --- a/examples/with-mongodb-mongoose/package.json +++ b/examples/with-mongodb-mongoose/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.13.1", "swr": "0.2.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-netlify-cms/package.json b/examples/with-netlify-cms/package.json index 8f272651d74c..ef54184701fc 100644 --- a/examples/with-netlify-cms/package.json +++ b/examples/with-netlify-cms/package.json @@ -1,7 +1,7 @@ { "name": "with-netlify-cms", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-next-auth/package.json b/examples/with-next-auth/package.json index 8648b31f2882..8b630db921a9 100644 --- a/examples/with-next-auth/package.json +++ b/examples/with-next-auth/package.json @@ -6,7 +6,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "next-auth": "^2.1.0", diff --git a/examples/with-next-css/package.json b/examples/with-next-css/package.json index fb20839d6b96..bc45fdf1505f 100644 --- a/examples/with-next-css/package.json +++ b/examples/with-next-css/package.json @@ -11,5 +11,6 @@ "next": "^9.1.8-canary.11", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-next-less/package.json b/examples/with-next-less/package.json index a1463c65a3fa..57644818895b 100644 --- a/examples/with-next-less/package.json +++ b/examples/with-next-less/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-next-offline/package.json b/examples/with-next-offline/package.json index 04ed33543b47..5277dce4ee41 100644 --- a/examples/with-next-offline/package.json +++ b/examples/with-next-offline/package.json @@ -16,5 +16,6 @@ }, "devDependencies": { "cross-env": "6.0.3" - } + }, + "license": "MIT" } diff --git a/examples/with-next-page-transitions/package.json b/examples/with-next-page-transitions/package.json index ede1f4d99d5a..89f8add74809 100644 --- a/examples/with-next-page-transitions/package.json +++ b/examples/with-next-page-transitions/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.7.0", "next-page-transitions": "1.0.0-beta.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-next-sass/package.json b/examples/with-next-sass/package.json index 3511b5b82560..fa117e8d5409 100644 --- a/examples/with-next-sass/package.json +++ b/examples/with-next-sass/package.json @@ -9,5 +9,6 @@ "react": "^16.7.0", "react-dom": "^16.7.0", "sass": "1.26.3" - } + }, + "license": "MIT" } diff --git a/examples/with-next-seo/package.json b/examples/with-next-seo/package.json index 5b2d1864675d..1692e8de2d78 100644 --- a/examples/with-next-seo/package.json +++ b/examples/with-next-seo/package.json @@ -12,5 +12,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-next-translate/package.json b/examples/with-next-translate/package.json index 2860e4596970..93cc8bafb8d0 100644 --- a/examples/with-next-translate/package.json +++ b/examples/with-next-translate/package.json @@ -10,5 +10,6 @@ "next-translate": "0.16.1", "react": "16.13.1", "react-dom": "16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/with-orbit-components/package.json b/examples/with-orbit-components/package.json index 29f281938f08..5896bd0f6e72 100644 --- a/examples/with-orbit-components/package.json +++ b/examples/with-orbit-components/package.json @@ -17,5 +17,5 @@ "@kiwicom/babel-plugin-orbit-components": "latest", "babel-plugin-styled-components": "^1.8.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-overmind/package.json b/examples/with-overmind/package.json index b14ab720c556..77cf7ba30331 100644 --- a/examples/with-overmind/package.json +++ b/examples/with-overmind/package.json @@ -10,7 +10,7 @@ }, "keywords": [], "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "overmind": "^17.0.0-1551262265873", diff --git a/examples/with-passport-and-next-connect/package.json b/examples/with-passport-and-next-connect/package.json index 3b1ed0cdc6fa..df32791ed6c8 100644 --- a/examples/with-passport-and-next-connect/package.json +++ b/examples/with-passport-and-next-connect/package.json @@ -16,5 +16,5 @@ "react-dom": "^16.13.1", "swr": "^0.1.18" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-passport/package.json b/examples/with-passport/package.json index 9431498ef1b3..3c65a2ac6ca5 100644 --- a/examples/with-passport/package.json +++ b/examples/with-passport/package.json @@ -16,5 +16,5 @@ "react-dom": "latest", "swr": "0.3.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-patternfly/package.json b/examples/with-patternfly/package.json index f722ef6fca2d..67da15347979 100644 --- a/examples/with-patternfly/package.json +++ b/examples/with-patternfly/package.json @@ -20,5 +20,5 @@ "svg-url-loader": "^3.0.2", "url-loader": "^1.1.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-polyfills/package.json b/examples/with-polyfills/package.json index b98ad551a8e6..ed1512ec5b81 100644 --- a/examples/with-polyfills/package.json +++ b/examples/with-polyfills/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-portals-ssr/package.json b/examples/with-portals-ssr/package.json index dd62fb90227f..f52c2049250b 100644 --- a/examples/with-portals-ssr/package.json +++ b/examples/with-portals-ssr/package.json @@ -9,5 +9,6 @@ "next": "latest", "react": "16.13.1", "react-dom": "16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/with-portals/package.json b/examples/with-portals/package.json index 1d16aa133b37..a8e3e04dd8fa 100644 --- a/examples/with-portals/package.json +++ b/examples/with-portals/package.json @@ -8,5 +8,6 @@ "next": "latest", "react": "^16.7.0", "react-dom": "^16.7.0" - } + }, + "license": "MIT" } diff --git a/examples/with-prefetching/package.json b/examples/with-prefetching/package.json index 67996ea47da4..740b911133f6 100644 --- a/examples/with-prefetching/package.json +++ b/examples/with-prefetching/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.7.0" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-quill-js/package.json b/examples/with-quill-js/package.json index 164286eb6819..c1bc88c00cdc 100644 --- a/examples/with-quill-js/package.json +++ b/examples/with-quill-js/package.json @@ -2,7 +2,7 @@ "name": "with-quill-js", "version": "1.0.0", "author": "Arya Sadeghi", - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-rbx-bulma-pro/package.json b/examples/with-rbx-bulma-pro/package.json index 0ebc7974352f..ab43d43c8000 100644 --- a/examples/with-rbx-bulma-pro/package.json +++ b/examples/with-rbx-bulma-pro/package.json @@ -11,5 +11,6 @@ "rbx": "^2.2.0", "react": "^16.13.1", "react-dom": "^16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/with-react-ga/package.json b/examples/with-react-ga/package.json index f94f5f5985c6..8d4fb095a039 100644 --- a/examples/with-react-ga/package.json +++ b/examples/with-react-ga/package.json @@ -13,5 +13,5 @@ "react-ga": "2.5.3" }, "author": "", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-react-helmet/package.json b/examples/with-react-helmet/package.json index 91a3339937b5..bc3791b12b7c 100644 --- a/examples/with-react-helmet/package.json +++ b/examples/with-react-helmet/package.json @@ -1,6 +1,6 @@ { "name": "with-react-helmet", - "license": "ISC", + "license": "MIT", "version": "1.0.0", "scripts": { "dev": "next", diff --git a/examples/with-react-intl/package.json b/examples/with-react-intl/package.json index 478dc4a47ca1..1b671bd5da87 100644 --- a/examples/with-react-intl/package.json +++ b/examples/with-react-intl/package.json @@ -24,7 +24,7 @@ "react-dom": "^16.9.0", "react-intl": "^5.6.3" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "@types/accepts": "^1.3.5", "cross-spawn": "7.0.3", diff --git a/examples/with-react-jss/package.json b/examples/with-react-jss/package.json index d0f2ac79ba9d..8466a2521eb7 100644 --- a/examples/with-react-jss/package.json +++ b/examples/with-react-jss/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.13.1", "react-jss": "^10.3.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-react-md-typescript/package.json b/examples/with-react-md-typescript/package.json index 861df5aa42a2..cd82e062a081 100644 --- a/examples/with-react-md-typescript/package.json +++ b/examples/with-react-md-typescript/package.json @@ -2,7 +2,7 @@ "name": "with-react-md-typescript", "version": "0.1.0", "private": true, - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next dev", "build": "next build", diff --git a/examples/with-react-md/package.json b/examples/with-react-md/package.json index 2ff86c3dec5f..d1bc50c18338 100644 --- a/examples/with-react-md/package.json +++ b/examples/with-react-md/package.json @@ -2,7 +2,7 @@ "name": "with-react-md", "version": "1.0.0", "private": true, - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-react-multi-carousel/package.json b/examples/with-react-multi-carousel/package.json index 92720c92c02f..990e77144a60 100644 --- a/examples/with-react-multi-carousel/package.json +++ b/examples/with-react-multi-carousel/package.json @@ -9,7 +9,7 @@ "start": "next start" }, "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "@material-ui/core": "^3.9.2", "@material-ui/icons": "^3.0.2", diff --git a/examples/with-react-native-web/package.json b/examples/with-react-native-web/package.json index 9a3497e1e70d..f8a071c9c667 100644 --- a/examples/with-react-native-web/package.json +++ b/examples/with-react-native-web/package.json @@ -13,5 +13,6 @@ }, "devDependencies": { "babel-plugin-react-native-web": "^0.11.7" - } + }, + "license": "MIT" } diff --git a/examples/with-react-relay-network-modern/package.json b/examples/with-react-relay-network-modern/package.json index cf0dc1f312bd..01bc838a3114 100644 --- a/examples/with-react-relay-network-modern/package.json +++ b/examples/with-react-relay-network-modern/package.json @@ -10,7 +10,7 @@ "schema": "graphql get-schema -e dev" }, "author": "", - "license": "ISC", + "license": "MIT", "dependencies": { "graphql": "^14.6.0", "next": "latest", diff --git a/examples/with-react-toolbox/package.json b/examples/with-react-toolbox/package.json index 229a0a7f2e4c..e6a7ce123382 100644 --- a/examples/with-react-toolbox/package.json +++ b/examples/with-react-toolbox/package.json @@ -32,5 +32,6 @@ }, "output": "public", "javascript": "./theme.js" - } + }, + "license": "MIT" } diff --git a/examples/with-reactstrap/package.json b/examples/with-reactstrap/package.json index d70af506fdab..ee6556dbc695 100644 --- a/examples/with-reactstrap/package.json +++ b/examples/with-reactstrap/package.json @@ -12,5 +12,6 @@ "react": "^16.13.1", "react-dom": "^16.13.1", "reactstrap": "^8.5.1" - } + }, + "license": "MIT" } diff --git a/examples/with-realm-web/package.json b/examples/with-realm-web/package.json index b6863fd78104..a942102be98b 100644 --- a/examples/with-realm-web/package.json +++ b/examples/with-realm-web/package.json @@ -13,5 +13,5 @@ "realm-web": "0.4.0", "swr": "0.2.3" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-reason-relay/package.json b/examples/with-reason-relay/package.json index 1ae2f79105e2..e7f9f53e7a83 100644 --- a/examples/with-reason-relay/package.json +++ b/examples/with-reason-relay/package.json @@ -11,7 +11,7 @@ "schema": "graphql get-schema -e dev" }, "author": "arnarkari93@gmail.com", - "license": "ISC", + "license": "MIT", "dependencies": { "@zeit/next-css": "1.0.1", "bs-fetch": "0.5.2", diff --git a/examples/with-reasonml-todo/package.json b/examples/with-reasonml-todo/package.json index 10696fddc759..08f3dc797526 100644 --- a/examples/with-reasonml-todo/package.json +++ b/examples/with-reasonml-todo/package.json @@ -8,7 +8,7 @@ "build": "bsb -clean-world -make-world && next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "next-transpile-modules": "^4.0.2", diff --git a/examples/with-reasonml/package.json b/examples/with-reasonml/package.json index 0d165a13ad3a..dfcb3af7449a 100644 --- a/examples/with-reasonml/package.json +++ b/examples/with-reasonml/package.json @@ -8,7 +8,7 @@ "build": "bsb -clean-world -make-world && next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "next": "latest", "next-transpile-modules": "^4.0.2", diff --git a/examples/with-rebass/package.json b/examples/with-rebass/package.json index a0bc9f42f587..f42da1d029de 100644 --- a/examples/with-rebass/package.json +++ b/examples/with-rebass/package.json @@ -11,5 +11,6 @@ "react-dom": "^16.7.0", "rebass": "1.0.0-1", "styled-components": "^2.1.1" - } + }, + "license": "MIT" } diff --git a/examples/with-recoil/package.json b/examples/with-recoil/package.json index 70c77dafbed5..9b4928042c3c 100644 --- a/examples/with-recoil/package.json +++ b/examples/with-recoil/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.13.1", "recoil": "0.0.7" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-code-splitting/package.json b/examples/with-redux-code-splitting/package.json index aba4fd365b30..771850100270 100644 --- a/examples/with-redux-code-splitting/package.json +++ b/examples/with-redux-code-splitting/package.json @@ -18,5 +18,5 @@ "redux-thunk": "~2.2.0" }, "author": "Dmytro V. Dogadailo (https://dogada.org)", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-observable/package.json b/examples/with-redux-observable/package.json index 5bc377ae4759..8041f43c95db 100644 --- a/examples/with-redux-observable/package.json +++ b/examples/with-redux-observable/package.json @@ -17,5 +17,5 @@ "rxjs": "6.5.5", "universal-rxjs-ajax": "2.0.4" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-persist/package.json b/examples/with-redux-persist/package.json index 3d50e469b1c9..a03c5b5e4e5d 100644 --- a/examples/with-redux-persist/package.json +++ b/examples/with-redux-persist/package.json @@ -15,5 +15,5 @@ "redux-devtools-extension": "^2.13.2", "redux-persist": "6.0.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-saga/package.json b/examples/with-redux-saga/package.json index 18a7bfc80f7a..3e01df21afd2 100644 --- a/examples/with-redux-saga/package.json +++ b/examples/with-redux-saga/package.json @@ -1,7 +1,7 @@ { "name": "with-redux-saga", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-redux-thunk/package.json b/examples/with-redux-thunk/package.json index 9488355a8115..4d9895253346 100644 --- a/examples/with-redux-thunk/package.json +++ b/examples/with-redux-thunk/package.json @@ -15,5 +15,5 @@ "redux-devtools-extension": "^2.13.8", "redux-thunk": "^2.3.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-toolkit/package.json b/examples/with-redux-toolkit/package.json index 991cf54ac856..c570a0908345 100644 --- a/examples/with-redux-toolkit/package.json +++ b/examples/with-redux-toolkit/package.json @@ -14,5 +14,5 @@ "react-dom": "^16.13.1", "react-redux": "^7.2.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux-wrapper/package.json b/examples/with-redux-wrapper/package.json index b3f1e2c126ab..2e64d346a9a8 100644 --- a/examples/with-redux-wrapper/package.json +++ b/examples/with-redux-wrapper/package.json @@ -16,5 +16,5 @@ "redux-devtools-extension": "2.13.8", "redux-thunk": "2.3.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-redux/package.json b/examples/with-redux/package.json index 04c01fe8efb4..504156f1d828 100644 --- a/examples/with-redux/package.json +++ b/examples/with-redux/package.json @@ -14,5 +14,5 @@ "redux": "^3.6.0", "redux-devtools-extension": "^2.13.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-reflux/package.json b/examples/with-reflux/package.json index 5684fe697627..2c50d3e03ae5 100644 --- a/examples/with-reflux/package.json +++ b/examples/with-reflux/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.7.0", "reflux": "^6.4.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-relay-modern/package.json b/examples/with-relay-modern/package.json index 4e199b31f805..6dd8ccc89e06 100644 --- a/examples/with-relay-modern/package.json +++ b/examples/with-relay-modern/package.json @@ -9,7 +9,7 @@ "relay": "relay-compiler --src ./ --exclude '**/.next/**' '**/node_modules/**' '**/test/**' '**/__generated__/**' --exclude '**/schema/**' --schema ./schema/schema.graphql", "schema": "graphql get-schema -e dev" }, - "license": "ISC", + "license": "MIT", "dependencies": { "graphql": "^14.6.0", "next": "latest", diff --git a/examples/with-rematch/package.json b/examples/with-rematch/package.json index 0a0eabdf26cb..f2ad36ad01ab 100644 --- a/examples/with-rematch/package.json +++ b/examples/with-rematch/package.json @@ -14,5 +14,5 @@ "react-redux": "7.2.0", "redux": "4.0.5" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-route-as-modal/package.json b/examples/with-route-as-modal/package.json index 334038fe2f29..1b8e2333ac7d 100644 --- a/examples/with-route-as-modal/package.json +++ b/examples/with-route-as-modal/package.json @@ -12,5 +12,5 @@ "react-dom": "16.13.1", "react-modal": "3.11.2" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-segment-analytics/package.json b/examples/with-segment-analytics/package.json index e060f90fe805..92cad9dbfbed 100644 --- a/examples/with-segment-analytics/package.json +++ b/examples/with-segment-analytics/package.json @@ -10,5 +10,6 @@ "next": "latest", "react": "16.13.1", "react-dom": "16.13.1" - } + }, + "license": "MIT" } diff --git a/examples/with-semantic-ui/package.json b/examples/with-semantic-ui/package.json index 0df996e660d2..1abbe80498a6 100644 --- a/examples/with-semantic-ui/package.json +++ b/examples/with-semantic-ui/package.json @@ -18,5 +18,5 @@ "url-loader": "^1.1.2", "webpack": "^4.29.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-sentry/package.json b/examples/with-sentry/package.json index 7d1ba55478e5..e8f61cc1a334 100644 --- a/examples/with-sentry/package.json +++ b/examples/with-sentry/package.json @@ -1,7 +1,7 @@ { "name": "with-sentry-simple", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "scripts": { "dev": "next", "build": "next build", diff --git a/examples/with-shallow-routing/package.json b/examples/with-shallow-routing/package.json index b048d4e85681..f4d51ea58b72 100644 --- a/examples/with-shallow-routing/package.json +++ b/examples/with-shallow-routing/package.json @@ -11,5 +11,5 @@ "react": "16.13.1", "react-dom": "16.13.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-slate/package.json b/examples/with-slate/package.json index 88da38bc841c..ca09f34d27cf 100644 --- a/examples/with-slate/package.json +++ b/examples/with-slate/package.json @@ -14,5 +14,6 @@ "slate": "^0.37.0", "slate-plain-serializer": "^0.5.27", "slate-react": "^0.15.0" - } + }, + "license": "MIT" } diff --git a/examples/with-static-export/package.json b/examples/with-static-export/package.json index 90f1ba3d9cf8..1d5fd83d9cc5 100644 --- a/examples/with-static-export/package.json +++ b/examples/with-static-export/package.json @@ -13,5 +13,6 @@ "export": "next export", "prestart": "npm run export", "start": "serve out" - } + }, + "license": "MIT" } diff --git a/examples/with-stencil/package.json b/examples/with-stencil/package.json index 60a794a3f006..f540611a4247 100644 --- a/examples/with-stencil/package.json +++ b/examples/with-stencil/package.json @@ -7,5 +7,6 @@ "dev": "yarn --cwd packages/web-app dev", "build": "yarn --cwd packages/web-app build", "start": "yarn --cwd packages/web-app start" - } + }, + "license": "MIT" } diff --git a/examples/with-stitches-styled/package.json b/examples/with-stitches-styled/package.json index aa22d328bd9c..a8b9179cb9ec 100644 --- a/examples/with-stitches-styled/package.json +++ b/examples/with-stitches-styled/package.json @@ -17,5 +17,6 @@ "devDependencies": { "@types/react": "^16.9.34", "typescript": "^3.8.3" - } + }, + "license": "MIT" } diff --git a/examples/with-stitches/package.json b/examples/with-stitches/package.json index 2bb42b7509b4..289bd02d642a 100644 --- a/examples/with-stitches/package.json +++ b/examples/with-stitches/package.json @@ -16,5 +16,6 @@ "devDependencies": { "@types/react": "^16.9.34", "typescript": "^3.8.3" - } + }, + "license": "MIT" } diff --git a/examples/with-stomp/package.json b/examples/with-stomp/package.json index 66f86c667867..f825de6bda91 100644 --- a/examples/with-stomp/package.json +++ b/examples/with-stomp/package.json @@ -11,5 +11,6 @@ "react": "^16.7.0", "react-dom": "^16.7.0", "@stomp/stompjs": "^5.4.2" - } + }, + "license": "MIT" } diff --git a/examples/with-storybook/package.json b/examples/with-storybook/package.json index 276059e13992..fd39acc6948a 100644 --- a/examples/with-storybook/package.json +++ b/examples/with-storybook/package.json @@ -14,7 +14,7 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC", + "license": "MIT", "devDependencies": { "@storybook/addon-actions": "6.0.5", "@storybook/addon-links": "6.0.5", diff --git a/examples/with-strict-csp/package.json b/examples/with-strict-csp/package.json index 677bfb65b6e4..e25711191853 100644 --- a/examples/with-strict-csp/package.json +++ b/examples/with-strict-csp/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-stripe-typescript/package.json b/examples/with-stripe-typescript/package.json index da1e6fd49723..a4716f924f4a 100644 --- a/examples/with-stripe-typescript/package.json +++ b/examples/with-stripe-typescript/package.json @@ -7,7 +7,7 @@ "build": "next build", "start": "next start" }, - "license": "ISC", + "license": "MIT", "dependencies": { "@stripe/react-stripe-js": "1.1.2", "@stripe/stripe-js": "1.5.0", diff --git a/examples/with-style-sheet/package.json b/examples/with-style-sheet/package.json index b4dc38510963..67826c2e566e 100644 --- a/examples/with-style-sheet/package.json +++ b/examples/with-style-sheet/package.json @@ -15,5 +15,5 @@ "style-sheet": "^4.0.4" }, "author": "Giuseppe Gurgone", - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-styled-components-rtl/package.json b/examples/with-styled-components-rtl/package.json index 92adec04bd32..274bc658eb98 100644 --- a/examples/with-styled-components-rtl/package.json +++ b/examples/with-styled-components-rtl/package.json @@ -16,5 +16,5 @@ "devDependencies": { "babel-plugin-styled-components": "1.10.6" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-styled-components/package.json b/examples/with-styled-components/package.json index 449390931786..d76b25b4be75 100644 --- a/examples/with-styled-components/package.json +++ b/examples/with-styled-components/package.json @@ -16,5 +16,5 @@ "devDependencies": { "babel-plugin-styled-components": "^1.8.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-styled-jsx-plugins/package.json b/examples/with-styled-jsx-plugins/package.json index f0e5f287d537..51994a8fd45a 100644 --- a/examples/with-styled-jsx-plugins/package.json +++ b/examples/with-styled-jsx-plugins/package.json @@ -14,7 +14,7 @@ "react-dom": "^16.7.0", "styled-jsx-plugin-postcss": "0.1.0" }, - "license": "ISC", + "license": "MIT", "postcss": { "plugins": { "lost": {}, diff --git a/examples/with-styled-jsx-scss/package.json b/examples/with-styled-jsx-scss/package.json index 940df8f3201d..08ba3d2e8763 100644 --- a/examples/with-styled-jsx-scss/package.json +++ b/examples/with-styled-jsx-scss/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.7.0", "styled-jsx-plugin-sass": "0.2.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-styletron/package.json b/examples/with-styletron/package.json index 5087e7707627..443535f76913 100644 --- a/examples/with-styletron/package.json +++ b/examples/with-styletron/package.json @@ -12,5 +12,6 @@ "react-dom": "^16.8.0", "styletron-engine-atomic": "^1.1.2", "styletron-react": "^5.0.1" - } + }, + "license": "MIT" } diff --git a/examples/with-tesfy/package.json b/examples/with-tesfy/package.json index f6ce8e634aae..b4b4ad5683bd 100644 --- a/examples/with-tesfy/package.json +++ b/examples/with-tesfy/package.json @@ -15,5 +15,5 @@ "cookie": "0.4.1", "uuid": "8.1.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-three-js/package.json b/examples/with-three-js/package.json index 066cd94ef189..5d4dac6aba91 100644 --- a/examples/with-three-js/package.json +++ b/examples/with-three-js/package.json @@ -17,5 +17,6 @@ }, "devDependencies": { "next-transpile-modules": "4.0.2" - } + }, + "license": "MIT" } diff --git a/examples/with-typescript-graphql/package.json b/examples/with-typescript-graphql/package.json index 39fa7ed8a611..7caf217e414a 100644 --- a/examples/with-typescript-graphql/package.json +++ b/examples/with-typescript-graphql/package.json @@ -2,7 +2,7 @@ "name": "with-typescript-graphql", "version": "0.1.0", "author": "", - "license": "ISC", + "license": "MIT", "scripts": { "codegen": "graphql-let", "dev": "yarn codegen && next", diff --git a/examples/with-typescript-styled-components/package.json b/examples/with-typescript-styled-components/package.json index 3bc28281380e..219e0c32a5e3 100644 --- a/examples/with-typescript-styled-components/package.json +++ b/examples/with-typescript-styled-components/package.json @@ -20,5 +20,5 @@ "babel-plugin-styled-components": "^1.10.0", "typescript": "4.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-typescript/package.json b/examples/with-typescript/package.json index 76f1c48520ed..71b0fd8b3ee6 100644 --- a/examples/with-typescript/package.json +++ b/examples/with-typescript/package.json @@ -18,5 +18,5 @@ "@types/react-dom": "^16.9.4", "typescript": "4.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-typestyle/package.json b/examples/with-typestyle/package.json index 4da8089ea2a5..d8b1510fb3d1 100644 --- a/examples/with-typestyle/package.json +++ b/examples/with-typestyle/package.json @@ -12,5 +12,5 @@ "react-dom": "^16.7.0", "typestyle": "^2.0.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-unstated/package.json b/examples/with-unstated/package.json index ada7043f28eb..f0494dec2f0e 100644 --- a/examples/with-unstated/package.json +++ b/examples/with-unstated/package.json @@ -11,5 +11,6 @@ "react": "16.13.1", "react-dom": "16.13.1", "unstated-next": "1.1.0" - } + }, + "license": "MIT" } diff --git a/examples/with-userbase/package.json b/examples/with-userbase/package.json index bd4eae0f767d..8d83f2cbc035 100644 --- a/examples/with-userbase/package.json +++ b/examples/with-userbase/package.json @@ -16,5 +16,6 @@ "@fullhuman/postcss-purgecss": "^1.3.0", "postcss-preset-env": "^6.7.0", "tailwindcss": "^1.1.4" - } + }, + "license": "MIT" } diff --git a/examples/with-videojs/package.json b/examples/with-videojs/package.json index 7de83e79253e..1811217b2f6d 100644 --- a/examples/with-videojs/package.json +++ b/examples/with-videojs/package.json @@ -13,5 +13,5 @@ "video.js": "^6.7.3", "videojs-youtube": "^2.4.1" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-web-worker/package.json b/examples/with-web-worker/package.json index 347469c984ff..0adc1e352b6b 100644 --- a/examples/with-web-worker/package.json +++ b/examples/with-web-worker/package.json @@ -12,5 +12,6 @@ "react": "16.13.1", "react-dom": "16.13.1", "worker-plugin": "^4.0.3" - } + }, + "license": "MIT" } diff --git a/examples/with-webassembly/package.json b/examples/with-webassembly/package.json index e4c3806e26a7..ff4df47c5928 100644 --- a/examples/with-webassembly/package.json +++ b/examples/with-webassembly/package.json @@ -9,5 +9,6 @@ "build": "next build", "build-rust": "rustc +nightly --target wasm32-unknown-unknown -O --crate-type=cdylib src/add.rs -o add.wasm", "start": "next start" - } + }, + "license": "MIT" } diff --git a/examples/with-webpack-bundle-size-analyzer/package.json b/examples/with-webpack-bundle-size-analyzer/package.json index eaca65a903dd..79e83c4a8575 100644 --- a/examples/with-webpack-bundle-size-analyzer/package.json +++ b/examples/with-webpack-bundle-size-analyzer/package.json @@ -15,5 +15,5 @@ "react-dom": "^16.7.0", "webpack-bundle-size-analyzer": "^2.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-why-did-you-render/package.json b/examples/with-why-did-you-render/package.json index f67663f7dc9c..036895aa92a7 100644 --- a/examples/with-why-did-you-render/package.json +++ b/examples/with-why-did-you-render/package.json @@ -11,5 +11,5 @@ "react": "^16.7.0", "react-dom": "^16.7.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-xstate/package.json b/examples/with-xstate/package.json index 899d59e455a9..e7540887695b 100644 --- a/examples/with-xstate/package.json +++ b/examples/with-xstate/package.json @@ -13,5 +13,5 @@ "react-dom": "^16.9.0", "xstate": "4.7.6" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-yarn-workspaces/package.json b/examples/with-yarn-workspaces/package.json index 60a794a3f006..f540611a4247 100644 --- a/examples/with-yarn-workspaces/package.json +++ b/examples/with-yarn-workspaces/package.json @@ -7,5 +7,6 @@ "dev": "yarn --cwd packages/web-app dev", "build": "yarn --cwd packages/web-app build", "start": "yarn --cwd packages/web-app start" - } + }, + "license": "MIT" } diff --git a/examples/with-zeit-fetch/package.json b/examples/with-zeit-fetch/package.json index 828be083c554..f19cec84b82d 100644 --- a/examples/with-zeit-fetch/package.json +++ b/examples/with-zeit-fetch/package.json @@ -14,5 +14,5 @@ "react-dom": "^16.8.4", "unfetch": "4.1.0" }, - "license": "ISC" + "license": "MIT" } diff --git a/examples/with-zones/package.json b/examples/with-zones/package.json index ab64909d84a3..2f5bda61b94b 100644 --- a/examples/with-zones/package.json +++ b/examples/with-zones/package.json @@ -1,4 +1,5 @@ { "name": "with-zones-example", - "private": true + "private": true, + "license": "MIT" }