forked from firecmsco/firecms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 4.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@camberi/firecms",
"version": "0.50.0",
"description": "Awesome Firebase/Firestore-based CMS",
"author": "camberi",
"license": "MIT",
"repository": "[email protected]: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"
},
"dependencies": {
"@date-io/date-fns": "^1.3.11",
"@types/deep-equal": "^1.0.1",
"@types/react-measure": "^2.0.6",
"@uiw/react-md-editor": "^3.4.10",
"date-fns": "^2.21.3",
"deep-equal": "^2.0.5",
"firebaseui": "^4.8.0",
"formik": "^2.2.6",
"material-ui-popup-state": "^1.8.3",
"object-hash": "^2.1.1",
"react-base-table": "^1.12.0",
"react-csv": "^2.0.3",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dropzone": "^11.3.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.9"
},
"peerDependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"algoliasearch": "^4.9.1",
"firebase": "^8.0.0 || ^7.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"devDependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@material-ui/pickers": "^3.3.10",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.2",
"@types/object-hash": "^2.1.0",
"@types/rc-tree": "^1.11.3",
"@types/react": "^17.0.5",
"@types/react-csv": "^1.1.1",
"@types/react-dom": "^17.0.3",
"@types/react-router-dom": "^5.1.7",
"@types/yup": "^0.29.11",
"@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-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"firebase": "8.5.0",
"gh-pages": "^3.1.0",
"microbundle": "^0.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"tsd": "^0.14.0",
"typedoc": "^0.20.36",
"typescript": "^4.3.3"
},
"files": [
"dist"
]
}