-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.25 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
{
"name": "ra-data-nestjs-query",
"version": "5.1.5",
"description": "A GraphQL data provider for react-admin (nestjs-query)",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/mrnkr/ra-data-nestjs-query"
},
"bugs": {
"url": "https://github.com/mrnkr/ra-data-nestjs-query/issues"
},
"homepage": "https://github.com/mrnkr/ra-data-nestjs-query#readme",
"authors": [
"Gildas Garcia",
"Alvaro Nicoli <xmr.nkr@gmail.com>"
],
"keywords": [
"reactjs",
"react",
"react-admin",
"admin-on-rest",
"rest",
"graphql"
],
"files": [
"dist/",
"README.md",
"LICENSE"
],
"license": "MIT",
"scripts": {
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"build": "pnpm run build-cjs && pnpm run build-esm",
"build:cjs": "rimraf ./dist/cjs && tsc --project tsconfig.build.json --outDir dist/cjs",
"watch:cjs": "tsc --project tsconfig.build.json --outDir dist/cjs --watch",
"build:esm": "rimraf ./dist/esm && tsc --project tsconfig.build.json --outDir dist/esm --module es2015",
"watch:esm": "tsc --project tsconfig.build.json --outDir dist/esm --module es2015 --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"graphql-ast-types": "^1.0.2",
"lodash": "^4.17.21",
"pluralize": "^8.0.0",
"ra-data-graphql": "^5.1.0"
},
"peerDependencies": {
"@apollo/client": "^3.11.3",
"graphql": "^16.9.0",
"ra-core": "^5.1.1"
},
"devDependencies": {
"@apollo/client": "^3.11.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.7",
"@types/pluralize": "^0.0.33",
"@vitest/coverage-v8": "^2.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^3.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^6.2.2",
"graphql": "^16.9.0",
"prettier": "~3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"unplugin-swc": "^1.4.4",
"vitest": "^2.0.5"
}
}