-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.39 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
{
"name": "ra-data-graphql-amplication",
"version": "0.0.14",
"description": "A GraphQL simple data provider for react-admin",
"main": "dist/index.js",
"authors": [
"Yuval Hazaz"
],
"repository": {
"type": "git",
"url": "https://github.com/amplication/amplication.git"
},
"homepage": "https://amplication.com",
"keywords": [
"react-admin",
"amplication",
"graphql"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write \"**/*.{js,ts,json,gql,md,yaml}\""
},
"dependencies": {
"camel-case": "4.1.2",
"graphql-ast-types-browser": "1.0.2",
"lodash": "4.17.21",
"pluralize": "8.0.0",
"ra-data-graphql": "3.19.10"
},
"peerDependencies": {
"graphql": "^15.6.0",
"ra-core": "^3.9.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/lodash": "4.14.169",
"@types/pluralize": "0.0.29",
"cross-env": "5.2.1",
"final-form-arrays": "3.0.2",
"graphql": "15.6.0",
"jest": "26.6.3",
"jsonexport": "3.2.0",
"prettier": "2.5.1",
"rimraf": "2.7.1",
"ts-jest": "26.5.6",
"typescript": "4.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"coverageProvider": "v8",
"collectCoverageFrom": [
"**/*.{ts,tsx}",
"!**/*.spec.{ts,tsx}"
],
"modulePathIgnorePatterns": [
"dist"
]
}
}