Files
firecms/package.json
francesco ff2c8dcc91 - onFirebaseInit callback on the CMSApp called after Firebase initialisation.
Useful for using the local emulator.
- Fixed initial values bug when creating new entities and validation.
- Added `showError` prop to CMSFieldProps
2021-01-02 13:11:09 +01:00

117 lines
3.9 KiB
JSON

{
"name": "@camberi/firecms",
"version": "0.22.0",
"description": "Awesome Firestore based CMS",
"author": "camberi",
"license": "GPL-3.0",
"repository": "git@github.com:Camberi/firecms.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.modern.js",
"source": "src/index.tsx",
"engines": {
"node": ">=12"
},
"keywords": [
"firebase",
"cms",
"admin",
"admin panel",
"firebase panel",
"firestore",
"headless",
"headless cms",
"content manager"
],
"scripts": {
"build": "microbundle --no-compress --jsx React.createElement --format modern,cjs",
"start": "microbundle watch --no-compress --jsx React.createElement --format modern,cjs",
"prepublishOnly": "run-s build",
"createTag": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:watch": "react-scripts test --env=jsdom",
"predeploy": "cd example && yarn install && yarn run build",
"deploy": "gh-pages -d example/build"
},
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@material-ui/core": "^4.11.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.57",
"@material-ui/pickers": "^3.2.10",
"@types/deep-equal": "^1.0.1",
"@types/react-measure": "^2.0.6",
"codemirror": "^5.58.2",
"date-fns": "^2.10.0",
"deep-equal": "^2.0.3",
"formik": "^2.2.6",
"material-ui-popup-state": "^1.7.1",
"object-hash": "^2.0.3",
"react-base-table": "^1.12.0",
"react-codemirror2": "^7.2.1",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dropzone": "^11.2.0",
"react-markdown": "^5.0.2",
"react-measure": "^2.5.2",
"react-router-dom": "^5.2.0",
"react-transition-group": "^4.4.1",
"typeface-roboto": "^1.1.13",
"typeface-rubik": "^1.1.13",
"typeface-space-mono": "^1.1.13",
"use-clipboard-hook": "^1.1.1",
"yup": "^0.32.8"
},
"peerDependencies": {
"algoliasearch": "^4.5.1",
"firebase": "^7.21.0 | ^8.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "^4.0.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.14.14",
"@types/object-hash": "^1.3.3",
"@types/rc-tree": "^1.11.3",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.6",
"@types/yup": "^0.29.11",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"algoliasearch": "^4.5.1",
"cross-env": "^7.0.2",
"eslint-config-prettier": "^7.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-react": "^11.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"firebase": "^7.21.0",
"firebase-admin": "^9.2.0",
"gh-pages": "^3.1.0",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.1",
"typescript": "^4.1.2"
},
"files": [
"dist"
]
}