mirror of
https://github.com/zhigang1992/firecms.git
synced 2026-05-08 10:59:29 +08:00
116 lines
3.8 KiB
JSON
116 lines
3.8 KiB
JSON
{
|
|
"name": "@camberi/firecms",
|
|
"version": "1.0.0-beta9",
|
|
"description": "Awesome Firebase/Firestore-based headless open-source CMS",
|
|
"author": "camberi",
|
|
"license": "MIT",
|
|
"repository": "git@github.com:Camberi/firecms.git",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"module": "dist/index.modern.js",
|
|
"source": "src/index.ts",
|
|
"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 --raw --format modern,cjs --no-compress --jsx React.createElement",
|
|
"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 v$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"
|
|
},
|
|
"dependencies": {
|
|
"@date-io/date-fns": "^2.11.0",
|
|
"@uiw/react-md-editor": "^3.8.2",
|
|
"date-fns": "^2.21.3",
|
|
"deep-equal": "^2.0.5",
|
|
"formik": "^2.2.9",
|
|
"history": "^5",
|
|
"object-hash": "^2.2.0",
|
|
"react-base-table": "^1.12.0",
|
|
"react-dnd": "^14.0.2",
|
|
"react-dnd-html5-backend": "^14.0.0",
|
|
"react-dropzone": "^11.4.2",
|
|
"react-measure": "^2.5.2",
|
|
"react-transition-group": "^4.4.1",
|
|
"typeface-roboto": "^1.1.13",
|
|
"typeface-rubik": "^1.1.13",
|
|
"typeface-space-mono": "^1.1.13",
|
|
"yup": "^0.32.9"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": "^11.4.1",
|
|
"@emotion/styled": "^11.3.0",
|
|
"@mui/icons-material": "next",
|
|
"@mui/lab": "^5.0.0-alpha.48",
|
|
"@mui/material": "^5.0.0",
|
|
"@mui/styles": "^5.0.0",
|
|
"algoliasearch": "^4.9.1",
|
|
"firebase": "^9.0.0",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router": "^6.0.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"react-scripts": "^4.0.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@emotion/react": "^11.4.1",
|
|
"@emotion/styled": "^11.3.0",
|
|
"@mui/icons-material": "5",
|
|
"@mui/lab": "^5.0.0-alpha.48",
|
|
"@mui/material": "^5.0.0",
|
|
"@mui/styles": "^5.0.0",
|
|
"@types/deep-equal": "^1.0.1",
|
|
"@types/jest": "^27.0.3",
|
|
"@types/object-hash": "^2.1.0",
|
|
"@types/react": "^17.0.5",
|
|
"@types/react-dom": "^17.0.3",
|
|
"@types/react-measure": "^2.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^4.22.1",
|
|
"@typescript-eslint/parser": "^4.22.1",
|
|
"algoliasearch": "^4.9.1",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^7.27.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-config-standard": "^16.0.2",
|
|
"eslint-config-standard-react": "^11.0.1",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-node": "^11.1.0",
|
|
"eslint-plugin-promise": "^5.1.0",
|
|
"eslint-plugin-react": "^7.21.5",
|
|
"firebase": "^9.4.1",
|
|
"microbundle": "^0.14.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-router": "^6.0.0",
|
|
"react-router-dom": "^6.0.0",
|
|
"react-scripts": "^4.0.3",
|
|
"tsd": "0.19.0",
|
|
"typescript": "^4.5.2"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
]
|
|
}
|