Feature/single package (#1)
This commit is contained in:
committed by
GitHub
parent
5963227066
commit
0b64464611
248
package.json
248
package.json
@ -1,37 +1,17 @@
|
||||
{
|
||||
"version": "0.0.0",
|
||||
"scripts": {
|
||||
"bootstrap": "lerna bootstrap",
|
||||
"start": "run-s clean bootstrap build:esm develop",
|
||||
"develop": "lerna run develop --parallel --ignore netlify-cms-proxy-server",
|
||||
"build": "run-s clean build:esm build:lerna",
|
||||
"build:lerna": "lerna run build",
|
||||
"build:esm": "lerna run build:esm",
|
||||
"build-preview": "run-s build build-preview:lerna",
|
||||
"build-preview:lerna": "lerna run build-preview",
|
||||
"build:demo": "run-s build build:demo:copy",
|
||||
"build:demo:copy": "ncp packages/netlify-cms/dist dev-test/dist/",
|
||||
"develop": "cd packages/netlify-cms-core && yarn develop",
|
||||
"build": "run-s clean build:esm build:webpack",
|
||||
"build:webpack": "cd packages/netlify-cms-core && yarn build",
|
||||
"build:esm": "cd packages/netlify-cms-core && yarn build:esm",
|
||||
"type-check": "tsc --noEmit",
|
||||
"type-check:watch": "npm run type-check -- --watch",
|
||||
"clean": "rimraf \"packages/*/dist\" dev-test/dist",
|
||||
"clean:lerna": "lerna clean --yes",
|
||||
"reset": "run-s clean clean:lerna",
|
||||
"test": "run-s clean lint type-check test:unit",
|
||||
"test:ci": "run-s clean lint-quiet type-check test:unit",
|
||||
"test:all": "run-s test test:e2e",
|
||||
"test:all:ci": "run-s test:ci test:e2e:ci",
|
||||
"test:unit": "cross-env NODE_ENV=test jest --no-cache",
|
||||
"test:e2e": "run-s build:demo test:e2e:run",
|
||||
"test:e2e:ci": "run-s build:demo test:e2e:run-ci",
|
||||
"test:e2e:dev": "run-p clean && start-test develop 8080 test:e2e:exec-dev",
|
||||
"test:e2e:serve": "http-server -c-1 dev-test",
|
||||
"test:e2e:exec": "cypress run --browser chrome --headless",
|
||||
"test:e2e:exec-ci": "node cypress/run.mjs",
|
||||
"test:e2e:exec-dev": "cypress open",
|
||||
"test:e2e:record-fixtures:dev": "HTTP_PROXY=http://localhost:1080 RECORD_FIXTURES=true cypress open",
|
||||
"test:e2e:run": "start-test test:e2e:serve 8080 test:e2e:exec",
|
||||
"test:e2e:run-ci": "start-test test:e2e:serve 8080 test:e2e:exec-ci",
|
||||
"mock:server:start": "node -e 'require(\"./cypress/utils/mock-server\").start()'",
|
||||
"mock:server:stop": "node -e 'require(\"./cypress/utils/mock-server\").stop()'",
|
||||
"lint": "run-p -c --aggregate-output \"lint:*\"",
|
||||
"lint-quiet": "run-p -c --aggregate-output \"lint:* --quiet\"",
|
||||
"lint:css": "stylelint --ignore-path .gitignore \"{packages/**/*.{css,js,jsx,ts,tsx},website/**/*.css}\"",
|
||||
@ -59,32 +39,7 @@
|
||||
"publish:graduate:before-manual-version": "run-s publish:prepare publish:graduate:version",
|
||||
"publish:graduate:version": "run-s \"publish:version --conventional-graduate\"",
|
||||
"publish:graduate:dry-run": "run-s \"publish:version --conventional-graduate --no-git-tag-version\"",
|
||||
"storybook": "start-storybook -p 6006",
|
||||
"build-storybook": "build-storybook",
|
||||
"pack:app": "cd packages/netlify-cms-app && npm pack",
|
||||
"pack:azure": "cd packages/netlify-cms-backend-azure && npm pack",
|
||||
"pack:bitbucket": "cd packages/netlify-cms-backend-bitbucket && npm pack",
|
||||
"pack:git-gateway": "cd packages/netlify-cms-backend-git-gateway && npm pack",
|
||||
"pack:github": "cd packages/netlify-cms-backend-github && npm pack",
|
||||
"pack:gitlab": "cd packages/netlify-cms-backend-gitlab && npm pack",
|
||||
"pack:proxy": "cd packages/netlify-cms-backend-proxy && npm pack",
|
||||
"pack:test": "cd packages/netlify-cms-backend-test && npm pack",
|
||||
"pack:core": "cd packages/netlify-cms-core && npm pack",
|
||||
"pack:default-exports": "cd packages/netlify-cms-default-exports && npm pack",
|
||||
"pack:lib-util": "cd packages/netlify-cms-lib-util && npm pack",
|
||||
"pack:ui-default": "cd packages/netlify-cms-ui-default && npm pack",
|
||||
"pack:widget-boolean": "cd packages/netlify-cms-widget-boolean && npm pack",
|
||||
"pack:widget-code": "cd packages/netlify-cms-widget-code && npm pack",
|
||||
"pack:widget-colorstring": "cd packages/netlify-cms-widget-colorstring && npm pack",
|
||||
"pack:widget-date": "cd packages/netlify-cms-widget-date && npm pack",
|
||||
"pack:widget-datetime": "cd packages/netlify-cms-widget-datetime && npm pack",
|
||||
"pack:widget-file": "cd packages/netlify-cms-widget-file && npm pack",
|
||||
"pack:widget-image": "cd packages/netlify-cms-widget-image && npm pack",
|
||||
"pack:widget-list": "cd packages/netlify-cms-widget-list && npm pack",
|
||||
"pack:widget-map": "cd packages/netlify-cms-widget-map && npm pack",
|
||||
"pack:widget-markdown": "cd packages/netlify-cms-widget-markdown && npm pack",
|
||||
"pack:widget-object": "cd packages/netlify-cms-widget-object && npm pack",
|
||||
"pack:widget-relation": "cd packages/netlify-cms-widget-relation && npm pack",
|
||||
"pack-copy": "mv packages/**/*.tgz ./packs",
|
||||
"pack-clear": "rm -Rf packs/*",
|
||||
"pack-all": "run-p pack:* && npm run pack-copy",
|
||||
@ -100,103 +55,94 @@
|
||||
"last 2 ChromeAndroid versions"
|
||||
],
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.11.6",
|
||||
"@babel/core": "^7.11.6",
|
||||
"@babel/plugin-proposal-class-properties": "^7.10.4",
|
||||
"@babel/plugin-proposal-export-default-from": "^7.10.4",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
|
||||
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
|
||||
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
|
||||
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/preset-env": "^7.11.5",
|
||||
"@babel/preset-react": "^7.10.4",
|
||||
"@babel/preset-typescript": "^7.10.4",
|
||||
"@commitlint/cli": "^16.0.0",
|
||||
"@commitlint/config-conventional": "^16.0.0",
|
||||
"@babel/cli": "7.18.10",
|
||||
"@babel/core": "7.19.1",
|
||||
"@babel/plugin-proposal-class-properties": "7.18.6",
|
||||
"@babel/plugin-proposal-export-default-from": "7.18.10",
|
||||
"@babel/plugin-proposal-nullish-coalescing-operator": "7.18.6",
|
||||
"@babel/plugin-proposal-numeric-separator": "7.18.6",
|
||||
"@babel/plugin-proposal-object-rest-spread": "7.18.9",
|
||||
"@babel/plugin-proposal-optional-chaining": "7.18.9",
|
||||
"@babel/plugin-syntax-dynamic-import": "7.8.3",
|
||||
"@babel/preset-env": "7.19.1",
|
||||
"@babel/preset-react": "7.18.6",
|
||||
"@babel/preset-typescript": "7.18.6",
|
||||
"@emotion/eslint-plugin": "11.10.0",
|
||||
"@octokit/rest": "^16.28.7",
|
||||
"@storybook/addon-actions": "^5.3.6",
|
||||
"@storybook/addon-links": "^5.3.6",
|
||||
"@storybook/react": "^5.3.6",
|
||||
"@stylelint/postcss-css-in-js": "^0.37.2",
|
||||
"@testing-library/dom": "^8.0.0",
|
||||
"@testing-library/jest-dom": "^5.11.1",
|
||||
"@testing-library/react": "^12.0.0",
|
||||
"@types/common-tags": "^1.8.0",
|
||||
"@types/jest": "^27.0.0",
|
||||
"@types/js-base64": "^3.0.0",
|
||||
"@types/jwt-decode": "^2.2.1",
|
||||
"@types/lodash": "^4.14.149",
|
||||
"@types/uuid": "^3.4.6",
|
||||
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
||||
"@typescript-eslint/parser": "^5.0.0",
|
||||
"all-contributors-cli": "^6.0.0",
|
||||
"axios": "^0.26.0",
|
||||
"babel-core": "^7.0.0-bridge.0",
|
||||
"babel-eslint": "^11.0.0-beta.2",
|
||||
"babel-jest": "^27.0.0",
|
||||
"babel-loader": "^8.0.5",
|
||||
"babel-plugin-emotion": "^10.0.9",
|
||||
"babel-plugin-inline-json-import": "^0.3.2",
|
||||
"babel-plugin-inline-react-svg": "^2.0.0",
|
||||
"babel-plugin-lodash": "^3.3.4",
|
||||
"babel-plugin-transform-builtin-extend": "^1.1.2",
|
||||
"@octokit/rest": "16.43.2",
|
||||
"@stylelint/postcss-css-in-js": "0.37.3",
|
||||
"@testing-library/dom": "8.18.1",
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"@testing-library/react": "12.1.5",
|
||||
"@types/common-tags": "1.8.0",
|
||||
"@types/jest": "27.5.2",
|
||||
"@types/js-base64": "3.3.1",
|
||||
"@types/jwt-decode": "2.2.1",
|
||||
"@types/lodash": "4.14.185",
|
||||
"@types/uuid": "3.4.10",
|
||||
"@typescript-eslint/eslint-plugin": "5.38.0",
|
||||
"@typescript-eslint/parser": "5.38.0",
|
||||
"axios": "0.26.1",
|
||||
"babel-core": "7.0.0-bridge.0",
|
||||
"babel-eslint": "11.0.0-beta.2",
|
||||
"babel-jest": "27.5.1",
|
||||
"babel-loader": "8.2.5",
|
||||
"babel-plugin-emotion": "11.0.0",
|
||||
"babel-plugin-inline-json-import": "0.3.2",
|
||||
"babel-plugin-inline-react-svg": "2.0.1",
|
||||
"babel-plugin-lodash": "3.3.4",
|
||||
"babel-plugin-transform-builtin-extend": "1.1.2",
|
||||
"babel-plugin-transform-define": "2.0.1",
|
||||
"babel-plugin-transform-export-extensions": "^6.22.0",
|
||||
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
|
||||
"cache-me-outside": "^0.0.10",
|
||||
"copy-webpack-plugin": "^6.0.0",
|
||||
"cross-env": "^7.0.0",
|
||||
"css-loader": "^3.0.0",
|
||||
"babel-plugin-transform-export-extensions": "6.22.0",
|
||||
"babel-plugin-transform-inline-environment-variables": "0.4.4",
|
||||
"cache-me-outside": "0.0.10",
|
||||
"copy-webpack-plugin": "6.4.1",
|
||||
"cross-env": "7.0.3",
|
||||
"css-loader": "3.6.0",
|
||||
"cypress": "9.5.3",
|
||||
"cypress-file-upload": "^5.0.0",
|
||||
"cypress-image-snapshot": "^4.0.0",
|
||||
"cypress-jest-adapter": "^0.1.1",
|
||||
"cypress-plugin-tab": "^1.0.0",
|
||||
"dotenv": "^10.0.0",
|
||||
"eslint": "^8.12.0",
|
||||
"eslint-plugin-cypress": "^2.6.0",
|
||||
"eslint-plugin-import": "^2.18.2",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-react": "^7.17.0",
|
||||
"eslint-plugin-unicorn": "^41.0.1",
|
||||
"execa": "^5.0.0",
|
||||
"friendly-errors-webpack-plugin": "^1.7.0",
|
||||
"fs-extra": "^10.0.0",
|
||||
"gitlab": "^14.1.1",
|
||||
"http-server": "^14.0.0",
|
||||
"jest": "^27.0.0",
|
||||
"jest-cli": "^27.0.0",
|
||||
"jest-emotion": "^10.0.32",
|
||||
"js-yaml": "^4.0.0",
|
||||
"mockserver-client": "^5.8.0",
|
||||
"mockserver-node": "^5.8.0",
|
||||
"ncp": "^2.0.0",
|
||||
"nock": "^13.0.0",
|
||||
"node-fetch": "^2.3.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.4.7",
|
||||
"postcss-scss": "^4.0.3",
|
||||
"prettier": "^2.3.0",
|
||||
"react": "^16.12.0",
|
||||
"react-dom": "^16.12.0",
|
||||
"react-test-renderer": "^16.8.4",
|
||||
"rehype": "^7.0.0",
|
||||
"rimraf": "^3.0.0",
|
||||
"simple-git": "^3.0.0",
|
||||
"start-server-and-test": "^1.7.11",
|
||||
"stylelint": "^14.5.3",
|
||||
"stylelint-config-standard-scss": "^3.0.0",
|
||||
"stylelint-config-styled-components": "^0.1.1",
|
||||
"stylelint-processor-styled-components": "^1.10.0",
|
||||
"svg-inline-loader": "^0.8.0",
|
||||
"to-string-loader": "^1.1.5",
|
||||
"typescript": "^3.7.2",
|
||||
"unist-util-visit": "^1.4.0",
|
||||
"webpack": "^4.29.6",
|
||||
"webpack-cli": "^4.0.0",
|
||||
"webpack-dev-server": "^3.2.1"
|
||||
"cypress-file-upload": "5.0.8",
|
||||
"cypress-image-snapshot": "4.0.1",
|
||||
"cypress-jest-adapter": "0.1.1",
|
||||
"cypress-plugin-tab": "1.0.5",
|
||||
"dotenv": "10.0.0",
|
||||
"eslint": "8.24.0",
|
||||
"eslint-plugin-cypress": "2.12.1",
|
||||
"eslint-plugin-import": "2.26.0",
|
||||
"eslint-plugin-prettier": "4.2.1",
|
||||
"eslint-plugin-react": "7.31.8",
|
||||
"eslint-plugin-unicorn": "41.0.1",
|
||||
"execa": "5.1.1",
|
||||
"friendly-errors-webpack-plugin": "1.7.0",
|
||||
"fs-extra": "10.1.0",
|
||||
"gitlab": "14.2.2",
|
||||
"http-server": "14.1.1",
|
||||
"jest": "27.5.1",
|
||||
"jest-cli": "27.5.1",
|
||||
"jest-emotion": "11.0.0",
|
||||
"js-yaml": "4.1.0",
|
||||
"mockserver-client": "5.14.0",
|
||||
"mockserver-node": "5.14.0",
|
||||
"ncp": "2.0.0",
|
||||
"nock": "13.2.9",
|
||||
"node-fetch": "2.6.7",
|
||||
"npm-run-all": "4.1.5",
|
||||
"postcss": "8.4.16",
|
||||
"postcss-scss": "4.0.5",
|
||||
"prettier": "2.7.1",
|
||||
"react-test-renderer": "16.14.0",
|
||||
"rehype": "7.0.0",
|
||||
"rimraf": "3.0.2",
|
||||
"simple-git": "3.14.1",
|
||||
"start-server-and-test": "1.14.0",
|
||||
"stylelint": "14.12.1",
|
||||
"stylelint-config-standard-scss": "3.0.0",
|
||||
"stylelint-config-styled-components": "0.1.1",
|
||||
"stylelint-processor-styled-components": "1.10.0",
|
||||
"to-string-loader": "1.2.0",
|
||||
"typescript": "3.9.10",
|
||||
"unist-util-visit": "1.4.1",
|
||||
"webpack": "4.46.0",
|
||||
"webpack-cli": "4.10.0",
|
||||
"webpack-dev-server": "3.11.3"
|
||||
},
|
||||
"workspaces": {
|
||||
"packages": [
|
||||
@ -209,14 +155,12 @@
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@emotion/babel-preset-css-prop": "11.10.0",
|
||||
"emotion": "^10.0.9",
|
||||
"eslint-config-prettier": "^8.0.0",
|
||||
"eslint-plugin-babel": "^5.3.0",
|
||||
"globby": "^12.0.0",
|
||||
"lerna": "^4.0.0"
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-babel": "5.3.1",
|
||||
"globby": "12.2.0",
|
||||
"lerna": "4.0.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"react-redux": "^7.2.0"
|
||||
},
|
||||
"version": "0.0.0"
|
||||
"react-redux": "8.0.4"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user