-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
92 lines (92 loc) · 3.15 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
{
"name": "ra-data-postgraphile",
"version": "0.8.0",
"description": "Postgraphile data provider for react-admin",
"main": "./index.js",
"module": "esm/index.js",
"types": "./index.d.js",
"repository": "github:lovelysystems/ra-data-postgraphile",
"homepage": "https://github.com/lovelysystems/ra-data-postgraphile#readme",
"bugs": "https://github.com/lovelysystems/ra-data-postgraphile/issues",
"author": "Lovely Systems GmbH <[email protected]>",
"authors": [
"Jürgen Kartnaller"
],
"license": "Apache-2.0",
"scripts": {
"postinstall": "yarn-deduplicate -s fewer yarn.lock",
"build": "yarn run build:cjs && yarn run build:esm && yarn build:copy-files",
"build:cjs": "rimraf ./build && tsc --outdir build",
"build:esm": "rimraf ./build/esm && tsc --outDir build/esm --module es2015",
"build:copy-files": "node ./scripts/copy-files.js",
"lint": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint-staged": "yarn lint-js-staged",
"lint-js-staged": "git diff --diff-filter=d --cached --name-only -z -- '*.js' '*.jsx' | xargs -0 -I % sh -c 'git show \":%\" | eslint --stdin --stdin-filename \"%\";'",
"postbuild": "cp README.md CHANGELOG.md LICENCE build/",
"release:dry": "yarn build && npm publish build --tag latest --dry-run",
"release": "yarn build && yarn publish build --tag latest",
"watch": "rimraf ./lib && tsc --watch",
"prepublishOnly": "yarn build",
"test": "jest"
},
"sideEffects": false,
"keywords": [
"react-admin",
"postgraphile",
"graphql",
"lovelysystems"
],
"dependencies": {
"@apollo/client": "^3.3.19",
"apollo-link": "^1.2.14",
"apollo-link-error": "^1.1.13",
"apollo-link-http": "^1.5.17",
"graphql": "^15.6.1",
"graphql-tag": "^2.12.5",
"lodash": "^4.17.21",
"pg-tsquery": "^8.3.0",
"pluralize": "~8.0.0",
"ra-data-graphql": "^3.19.1",
"react-admin": "^3.19.1"
},
"devDependencies": {
"@types/jest": "27.0.2",
"@types/lodash": "4.14.176",
"@types/pluralize": "0.0.29",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"connected-react-router": "^6.9.1",
"cross-env": "^7.0.3",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "8.0.1",
"eslint-config-airbnb": "18.2.1",
"eslint-config-import": "0.13.0",
"eslint-config-ns": "1.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "25.2.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"final-form": "^4.20.4",
"fs-extra": "^10.0.0",
"history": "^4.10.1",
"jest": "^27.3.1",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-final-form": "^6.5.7",
"react-redux": "^7.2.5",
"react-router": "^5.2.1",
"react-router-dom": "^5.3.0",
"redux": "^4.1.1",
"redux-saga": "^1.1.3",
"ts-jest": "^27.0.7",
"typescript": "^4.0.3",
"yarn-deduplicate": "^3.1.0"
}
}