forked from hasura/ra-data-hasura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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-hasura",
"version": "0.1.0",
"description": "A data provider for connecting react-admin to a Hasura endpoint",
"main": "dist/index.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/hasura/ra-data-hasura.git"
},
"bugs": {
"url": "https://github.com/hasura/ra-data-hasura/issues"
},
"homepage": "https://github.com/hasura/ra-data-hasura#readme",
"authors": [
"Praveen Durairaju",
"Radcliffe Robinson"
],
"keywords": [
"reactjs",
"react",
"react-admin",
"admin-on-rest",
"rest",
"graphql",
"hasura"
],
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"prettier": "prettier --config ./.prettierrc --write '**/*.{js,jsx,md}'"
},
"dependencies": {
"graphql-ast-types-browser": "~1.0.2",
"kind-of": ">=6.0.3",
"lodash": "~4.17.5",
"minimist": ">=1.2.3",
"ra-data-graphql": "^3.6.1"
},
"peerDependencies": {
"graphql": "^14.1.1",
"ra-core": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"babel-loader": "^8.0.6",
"connected-react-router": "^6.8.0",
"final-form": "^4.18.7",
"final-form-arrays": "^3.0.2",
"graphql": "^14.5.8",
"husky": "^4.3.0",
"jsonexport": "^2.4.1",
"prettier": "^2.1.2",
"pretty-quick": "^3.1.0",
"ra-core": "^3.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-final-form": "^6.3.5",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux-saga": "^1.1.3",
"webpack": "^4.41.4",
"webpack-cli": "^3.3.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}