-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "ra-data-hasura",
"version": "0.7.0",
"description": "A data provider for connecting react-admin to a Hasura endpoint",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"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": "rimraf ./dist && tsc",
"prepublishOnly": "npm run test && npm run build",
"test": "jest",
"prettier": "prettier --config ./.prettierrc --write '**/*.{js,jsx,md}'",
"prepare": "husky install"
},
"dependencies": {
"lodash": "^4.17.21",
"ra-data-graphql": "^4.6.0 || ^5.0.3",
"graphql": "^16.6.0"
},
"peerDependencies": {
"ra-core": "^4.6.2 || ^5.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.191",
"husky": "^8.0.2",
"jest": "^29.5.0",
"prettier": "~3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
}
}