Feature/rebrand (#3)
This commit is contained in:
committed by
GitHub
parent
213e51c52d
commit
8acda23acc
229
package.json
229
package.json
@ -1,59 +1,158 @@
|
||||
{
|
||||
"version": "0.0.0",
|
||||
"name": "@simplecms/simple-cms-core",
|
||||
"version": "0.1.0",
|
||||
"license": "MIT",
|
||||
"description": "Simple CMS core application.",
|
||||
"repository": "https://github.com/SimpleCMS/simple-cms",
|
||||
"bugs": "https://github.com/SimpleCMS/simple-cms/issues",
|
||||
"keywords": [
|
||||
"simple",
|
||||
"cms",
|
||||
"core"
|
||||
],
|
||||
"scripts": {
|
||||
"bootstrap": "lerna bootstrap",
|
||||
"start": "run-s clean bootstrap build:esm develop",
|
||||
"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",
|
||||
"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}\"",
|
||||
"lint:js": "eslint --color --ignore-path .gitignore \"{{packages,scripts,website}/**/,}*.{js,jsx,ts,tsx}\"",
|
||||
"lint:format": "prettier \"{{packages,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\" --list-different",
|
||||
"build:esm": "cross-env NODE_ENV=esm babel src --out-dir dist/esm --ignore **/__tests__ --extensions \".js,.jsx,.ts,.tsx\"",
|
||||
"build:webpack": "webpack",
|
||||
"build": "cross-env NODE_ENV=production run-s build:esm build:webpack",
|
||||
"clean": "rimraf dist dev-test/dist",
|
||||
"develop": "webpack serve --hot",
|
||||
"format:prettier": "prettier \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\"",
|
||||
"format": "run-s \"lint:js --fix --quiet\" \"format:prettier --write\"",
|
||||
"format:prettier": "prettier \"{{packages,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\"",
|
||||
"publish": "run-s publish:before-manual-version publish:after-manual-version",
|
||||
"publish:ci": "run-s publish:prepare \"publish:version --yes\" build publish:push-git \"publish:from-git --yes\"",
|
||||
"publish:before-manual-version": "run-s publish:prepare publish:version",
|
||||
"publish:after-manual-version": "run-s build publish:push",
|
||||
"publish:prepare": "run-s bootstrap test",
|
||||
"publish:version": "lerna version --no-push",
|
||||
"publish:push": "run-s publish:push-git publish:from-git",
|
||||
"publish:push-git": "git push --follow-tags",
|
||||
"publish:from-git": "lerna publish from-git --pre-dist-tag beta",
|
||||
"publish:dry-run": "run-s \"publish:version --no-git-tag-version\"",
|
||||
"publish:prerelease": "run-s publish:prerelease:before-manual-version publish:after-manual-version",
|
||||
"publish:prerelease:ci": "run-s publish:prepare \"publish:version --conventional-prerelease --yes\" build publish:push-git \"publish:from-git --yes\"",
|
||||
"publish:prerelease:before-manual-version": "run-s publish:prepare publish:prerelease:version",
|
||||
"publish:prerelease:version": "run-s \"publish:version --conventional-prerelease\"",
|
||||
"publish:prerelease:dry-run": "run-s \"publish:version --conventional-prerelease --no-git-tag-version\"",
|
||||
"publish:graduate": "run-s publish:graduate:before-manual-version publish:after-manual-version",
|
||||
"publish:graduate:ci": "run-s publish:prepare \"publish:version --conventional-graduate --yes\" build publish:push-git \"publish:from-git --yes\"",
|
||||
"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\"",
|
||||
"pack:core": "cd packages/netlify-cms-core && npm pack",
|
||||
"pack-copy": "mv packages/**/*.tgz ./packs",
|
||||
"pack-clear": "rm -Rf packs/*",
|
||||
"pack-all": "run-p pack:* && npm run pack-copy",
|
||||
"build:pack": "run-s build publish:version pack-clear pack-all"
|
||||
"lint-quiet": "run-p -c --aggregate-output \"lint:* --quiet\"",
|
||||
"lint:css": "stylelint --ignore-path .gitignore \"{src/**/*.{css,js,jsx,ts,tsx},website/**/*.css}\"",
|
||||
"lint:format": "prettier \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx,css}\" --list-different",
|
||||
"lint:js": "eslint --color --ignore-path .gitignore \"{{src,scripts,website}/**/,}*.{js,jsx,ts,tsx}\"",
|
||||
"lint": "run-p -c --aggregate-output \"lint:*\"",
|
||||
"start": "run-s clean develop"
|
||||
},
|
||||
"module": "dist/esm/index.js",
|
||||
"main": "dist/simple-cms-core.js",
|
||||
"files": [
|
||||
"src/",
|
||||
"dist/",
|
||||
"index.d.ts"
|
||||
],
|
||||
"types": "index.d.ts",
|
||||
"browserslist": [
|
||||
"last 2 Chrome versions",
|
||||
"last 2 Opera versions",
|
||||
"last 2 Firefox versions",
|
||||
"last 2 ChromeAndroid versions",
|
||||
"last 2 Edge versions",
|
||||
"last 2 Safari versions",
|
||||
"last 2 Firefox versions",
|
||||
"last 2 iOS versions",
|
||||
"last 2 ChromeAndroid versions"
|
||||
"last 2 Opera versions",
|
||||
"last 2 Safari versions"
|
||||
],
|
||||
"dependencies": {
|
||||
"@emotion/babel-preset-css-prop": "11.10.0",
|
||||
"@emotion/css": "11.10.0",
|
||||
"@emotion/react": "11.10.4",
|
||||
"@emotion/styled": "11.10.4",
|
||||
"@hot-loader/react-dom": "17.0.2",
|
||||
"@iarna/toml": "2.2.5",
|
||||
"@mui/icons-material": "5.10.6",
|
||||
"@mui/material": "5.10.6",
|
||||
"@reduxjs/toolkit": "1.8.5",
|
||||
"ajv": "6.12.6",
|
||||
"ajv-errors": "1.0.1",
|
||||
"ajv-keywords": "3.5.2",
|
||||
"apollo-cache-inmemory": "1.6.6",
|
||||
"apollo-client": "2.6.10",
|
||||
"apollo-link-context": "1.0.20",
|
||||
"apollo-link-http": "1.5.17",
|
||||
"array-move": "4.0.0",
|
||||
"buffer": "^6.0.3",
|
||||
"clean-stack": "4.2.0",
|
||||
"codemirror": "5.65.9",
|
||||
"common-tags": "1.8.1",
|
||||
"copy-text-to-clipboard": "3.0.1",
|
||||
"create-react-class": "15.7.0",
|
||||
"deepmerge": "4.2.2",
|
||||
"diacritics": "1.3.0",
|
||||
"dompurify": "2.4.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-babel": "5.3.1",
|
||||
"fuzzy": "0.1.3",
|
||||
"globby": "12.2.0",
|
||||
"gotrue-js": "0.9.29",
|
||||
"graphql": "15.8.0",
|
||||
"graphql-tag": "2.12.6",
|
||||
"gray-matter": "4.0.3",
|
||||
"history": "4.10.1",
|
||||
"immer": "9.0.15",
|
||||
"immutable": "3.8.2",
|
||||
"ini": "2.0.0",
|
||||
"is-hotkey": "0.2.0",
|
||||
"js-base64": "3.7.2",
|
||||
"js-sha256": "0.9.0",
|
||||
"jwt-decode": "3.1.2",
|
||||
"localforage": "1.10.0",
|
||||
"lodash": "4.17.21",
|
||||
"mdast-util-definitions": "1.2.5",
|
||||
"mdast-util-to-string": "1.1.0",
|
||||
"minimatch": "3.0.4",
|
||||
"moment": "2.29.4",
|
||||
"node-polyglot": "2.4.2",
|
||||
"ol": "6.15.1",
|
||||
"path-browserify": "1.0.1",
|
||||
"prop-types": "15.8.1",
|
||||
"react": "17.0.2",
|
||||
"react-aria-menubutton": "7.0.3",
|
||||
"react-codemirror2": "7.2.1",
|
||||
"react-color": "2.19.3",
|
||||
"react-datetime": "3.1.1",
|
||||
"react-dnd": "14.0.5",
|
||||
"react-dnd-html5-backend": "14.1.0",
|
||||
"react-dom": "17.0.2",
|
||||
"react-frame-component": "5.2.3",
|
||||
"react-hot-loader": "4.13.0",
|
||||
"react-immutable-proptypes": "2.2.0",
|
||||
"react-is": "18.2.0",
|
||||
"react-markdown": "6.0.3",
|
||||
"react-modal": "3.15.1",
|
||||
"react-polyglot": "0.7.2",
|
||||
"react-redux": "8.0.4",
|
||||
"react-router-dom": "5.3.3",
|
||||
"react-scroll-sync": "0.9.0",
|
||||
"react-select": "4.3.1",
|
||||
"react-sortable-hoc": "2.0.0",
|
||||
"react-split-pane": "0.1.92",
|
||||
"react-textarea-autosize": "8.3.4",
|
||||
"react-toggled": "1.2.7",
|
||||
"react-topbar-progress-indicator": "4.1.1",
|
||||
"react-transition-group": "4.4.5",
|
||||
"react-virtualized-auto-sizer": "1.0.7",
|
||||
"react-waypoint": "10.3.0",
|
||||
"react-window": "1.8.7",
|
||||
"rehype-parse": "6.0.2",
|
||||
"rehype-remark": "8.1.1",
|
||||
"rehype-stringify": "7.0.0",
|
||||
"remark-gfm": "3.0.1",
|
||||
"remark-parse": "6.0.3",
|
||||
"remark-rehype": "4.0.1",
|
||||
"remark-stringify": "6.0.4",
|
||||
"sanitize-filename": "1.6.3",
|
||||
"semaphore": "1.1.0",
|
||||
"slate": "0.47.9",
|
||||
"slate-base64-serializer": "0.2.115",
|
||||
"slate-plain-serializer": "0.7.13",
|
||||
"slate-react": "0.22.10",
|
||||
"slate-soft-break": "0.9.0",
|
||||
"stream-browserify": "3.0.0",
|
||||
"tomlify-j0.4": "3.0.0",
|
||||
"ts-loader": "9.4.1",
|
||||
"unified": "7.1.0",
|
||||
"unist-builder": "1.0.4",
|
||||
"unist-util-visit-parents": "2.1.2",
|
||||
"uploadcare-widget": "3.19.0",
|
||||
"uploadcare-widget-tab-effects": "1.5.0",
|
||||
"url": "0.11.0",
|
||||
"url-join": "4.0.1",
|
||||
"uuid": "3.4.0",
|
||||
"validate-color": "2.2.1",
|
||||
"what-input": "5.2.12",
|
||||
"what-the-diff": "0.6.0",
|
||||
"yaml": "1.10.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/cli": "7.18.10",
|
||||
"@babel/core": "7.19.1",
|
||||
@ -74,10 +173,16 @@
|
||||
"@testing-library/jest-dom": "5.16.5",
|
||||
"@testing-library/react": "12.1.5",
|
||||
"@types/common-tags": "1.8.0",
|
||||
"@types/history": "4.7.11",
|
||||
"@types/jest": "27.5.2",
|
||||
"@types/js-base64": "3.3.1",
|
||||
"@types/jwt-decode": "2.2.1",
|
||||
"@types/lodash": "4.14.185",
|
||||
"@types/react": "17.0.50",
|
||||
"@types/react-dom": "17.0.17",
|
||||
"@types/react-router-dom": "5.3.3",
|
||||
"@types/react-scroll-sync": "0.8.4",
|
||||
"@types/url-join": "4.0.1",
|
||||
"@types/uuid": "3.4.10",
|
||||
"@typescript-eslint/eslint-plugin": "5.38.0",
|
||||
"@typescript-eslint/parser": "5.38.0",
|
||||
@ -95,7 +200,8 @@
|
||||
"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",
|
||||
"commonmark": "0.30.0",
|
||||
"commonmark-spec": "0.30.0",
|
||||
"cross-env": "7.0.3",
|
||||
"css-loader": "3.6.0",
|
||||
"cypress": "9.5.3",
|
||||
@ -111,7 +217,6 @@
|
||||
"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",
|
||||
@ -128,10 +233,13 @@
|
||||
"postcss": "8.4.16",
|
||||
"postcss-scss": "4.0.5",
|
||||
"prettier": "2.7.1",
|
||||
"react-svg-loader": "3.0.3",
|
||||
"react-test-renderer": "16.14.0",
|
||||
"rehype": "7.0.0",
|
||||
"rimraf": "3.0.2",
|
||||
"simple-git": "3.14.1",
|
||||
"slate-hyperscript": "0.13.9",
|
||||
"source-map-loader": "^4.0.0",
|
||||
"start-server-and-test": "1.14.0",
|
||||
"stylelint": "14.12.1",
|
||||
"stylelint-config-standard-scss": "3.0.0",
|
||||
@ -140,27 +248,8 @@
|
||||
"to-string-loader": "1.2.0",
|
||||
"typescript": "3.9.10",
|
||||
"unist-util-visit": "1.4.1",
|
||||
"webpack": "4.46.0",
|
||||
"webpack": "5.74.0",
|
||||
"webpack-cli": "4.10.0",
|
||||
"webpack-dev-server": "3.11.3"
|
||||
},
|
||||
"workspaces": {
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"nohoist": [
|
||||
"run-node"
|
||||
]
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@emotion/babel-preset-css-prop": "11.10.0",
|
||||
"eslint-config-prettier": "8.5.0",
|
||||
"eslint-plugin-babel": "5.3.1",
|
||||
"globby": "12.2.0",
|
||||
"lerna": "4.0.0"
|
||||
},
|
||||
"resolutions": {
|
||||
"react-redux": "8.0.4"
|
||||
"webpack-dev-server": "4.11.1"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user