forked from benwinding/react-admin-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "react-admin-firebase",
"description": "A firebase data provider for the React Admin framework",
"version": "3.3.0",
"peerDependencies": {
"firebase": "^9.6.4",
"react": "^17.x",
"react-admin": "^3.x",
"react-dom": "^17.x",
"react-router-dom": "^5.x"
},
"dependencies": {
"lodash": "4.x",
"path-browserify": "^1.0.0",
"rxjs": "^6.5.x"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.2",
"@types/jest": "^24.0.13",
"@types/lodash": "^4.14.150",
"@types/node": "^10.9.4",
"@types/react": "^16.8.13",
"@types/react-router-dom": "^5.1.5",
"@types/rx": "^4.1.1",
"firebase": "^9.6.4",
"firebase-tools": "^8.1.1",
"gulp": "^4.0.2",
"jest": "^23.6.0",
"microbundle": "^0.12.4",
"ra-core": "3.10.0",
"ts-jest": "^25",
"tslint": "^5.16.0",
"typescript": "4.5.5"
},
"homepage": "https://github.com/benwinding/react-admin-firebase",
"email": "[email protected]",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && microbundle",
"tsc-test": "tsc -p ./tsconfig.spec.json",
"watch": "microbundle watch",
"start-demo": "gulp start-demo",
"start-emulator": "yarn firebase emulators:start --only firestore",
"test": "yarn firebase emulators:exec \"yarn jest --forceExit --detectOpenHandles\"",
"test-watch": "yarn firebase emulators:exec \"yarn jest --watchAll --detectOpenHandles\""
},
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"umd:main": "dist/index.umd.js",
"source": "src/index.ts"
}