forked from marcantoine/ra-data-graphql-prisma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@unly/ra-data-graphql-prisma",
"version": "1.0.0",
"description": "A react-admin data provider for Prisma Server",
"scripts": {
"start": "cross-env-shell 'concurrently -p '{name}' -n 'lint,build,test' -c 'gray.bgWhite,yellow.bgBlue,green.bgWhite' \"yarn lint\" \"yarn build\" \"yarn test\"'",
"build": "yarn clean && tsc -w",
"build:once": "yarn clean && tsc",
"clean": "rm -rf lib/",
"lint": "esw src -w --ext .ts --ext .tsx",
"lint:once": "eslint src --ext .ts --ext .tsx",
"lint:fix": "eslint src --ext .ts --ext .tsx --fix",
"lint:fix:preview": "eslint src --ext .ts --ext .tsx --fix-dry-run",
"preversion": "yarn lint:once && yarn test:once && yarn doc:toc",
"postversion": "git add README.md CHANGELOG.md && git commit --amend --no-edit && git push && git push --tags",
"prepublishOnly": "yarn clean && yarn build:once && yarn publish:preview && cli-confirm \"Do you really want to release a new version? Please check the files that will be publicly released first. (y/n)\"",
"publish:preview": "npm pack && tar -xvzf *.tgz && rm -rf package *.tgz",
"release": "yarn bump --commit --tag",
"releaseAndPublish": "yarn release && npm publish",
"doc:toc": "yarn markdown-toc --maxdepth 4 -i README.md",
"test": "NODE_ENV=test jest --watchAll",
"test:once": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"security:audit": "yarn audit",
"packages:upgrade": "yarn upgrade-interactive --latest"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/UnlyEd/ra-data-graphql-prisma.git"
},
"bugs": {
"url": "https://github.com/UnlyEd/ra-data-graphql-prisma/issues"
},
"homepage": "https://github.com/UnlyEd/ra-data-graphql-prisma#readme",
"authors": [
"Flavian DESVERNE",
"Marc-Antoine FONNE",
"unlyEd"
],
"keywords": [
"reactjs",
"react",
"react-admin",
"admin-on-rest",
"rest",
"graphql",
"prisma",
"graphcms"
],
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"/lib"
],
"jest": {
"setupFilesAfterEnv": [
"jest-extended"
],
"verbose": true
},
"dependencies": {
"graphql-tag": "2.10.3",
"lodash": "4.17.15",
"pluralize": "8.0.0",
"ra-data-graphql": "3.2.2"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/preset-env": "7.8.7",
"@babel/preset-typescript": "7.8.3",
"@types/jest": "25.1.4",
"@types/lodash": "4.14.149",
"@types/node": "13.9.0",
"@types/pluralize": "0.0.29",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"@unly/cli-confirm": "1.1.1",
"apollo-client": "2.6.8",
"babel-cli": "6.26.0",
"babel-jest": "25.1.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"concurrently": "5.1.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jest": "23.8.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-watch": "6.0.1",
"graphql": "14.6.0",
"jest": "25.1.0",
"jest-extended": "0.11.5",
"markdown-toc": "1.2.0",
"react": "16.13.0",
"react-admin": "3.3.0",
"react-dom": "16.13.0",
"rimraf": "2.6.2",
"ts-jest": "25.2.1",
"typescript": "3.8.3",
"version-bump-prompt": "6.0.2"
},
"peerDependencies": {
"graphql": "^14.6.0",
"react-admin": "^3.0.0"
}
}