forked from lovelysystems/ra-data-postgraphile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
{
"name": "ra-data-postgraphile",
"version": "0.4.0",
"description": "Postgraphile data provider for react-admin",
"main": "lib/index.js",
"module": "esm/index.js",
"types": "esm/index.d.js",
"repository": "lovelysystems/ra-data-postgraphile",
"homepage": "https://github.com/lovelysystems/ra-data-postgraphile#readme",
"bugs": "https://github.com/lovelysystems/ra-data-postgraphile/issues",
"authors": [
"Jürgen Kartnaller"
],
"license": "Apache-2.0",
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm",
"watch": "rimraf ./lib && tsc --watch",
"prepublishOnly": "yarn build",
"test": "jest"
},
"sideEffects": false,
"files": [
"LICENSE",
"*.md",
"lib/",
"esm/",
"src"
],
"keywords": [
"react-admin",
"postgraphile",
"graphql",
"lovelysystems"
],
"dependencies": {
"apollo-boost": "^0.4.4",
"apollo-cache-inmemory": "^1.6.3",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.15",
"ra-data-graphql": "^3.0.0"
},
"peerDependencies": {
"ra-core": "^3.0.0"
},
"devDependencies": {
"@types/jest": "24.0.23",
"@types/lodash": "4.14.149",
"connected-react-router": "^6.5.2",
"cross-env": "^6.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"final-form": "^4.18.5",
"history": "^4.7.2",
"jest": "24.9.0",
"ra-core": "^3.0.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-final-form": "^6.3.3",
"react-redux": "^7.1.0",
"react-router": "^5.1.0",
"react-router-dom": "^5.1.0",
"redux": "^3.7.2 || ^4.0.3",
"redux-saga": "1.1.1",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
}
}