forked from 8base/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.75 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.75 KB
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
{
"name": "@8base/react-app-provider",
"version": "3.0.0-beta.3",
"repository": "https://github.com/8base/sdk",
"homepage": "https://github.com/8base/sdk/tree/master/packages/react/app-provider",
"main": "dist/cjs/index.js",
"types": "dist/mjs/index.d.ts",
"module": "dist/mjs/index.js",
"scripts": {
"build": "../../../bin/build-package.sh",
"watch": "../../../bin/watch-package.sh",
"test": "NPM_ENV=test jest"
},
"peerDependencies": {
"@apollo/client": "^3.3.7",
"graphql": "^15.5.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"dependencies": {
"@8base/apollo-client": "^3.0.0-beta.3",
"@8base/auth": "^3.0.0-beta.3",
"@8base/error-codes": "^1.0.22",
"@8base/react-auth": "^3.0.0-beta.3",
"@8base/react-table-schema-provider": "^3.0.0-beta.3",
"@8base/utils": "^3.0.0-beta.3",
"ramda": "^0.27.1"
},
"devDependencies": {
"@8base/web-auth0-auth-client": "^3.0.0-beta.3",
"@apollo/client": "^3.3.7",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@types/ramda": "^0.27.36",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-test-renderer": "^17.0.0",
"graphql": "^15.5.0",
"jest": "26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "<rootDir>/tsconfig.json"
}
},
"setupFiles": [
"<rootDir>/test/jest.setup.ts"
],
"collectCoverageFrom": [
"<rootDir>/src/**",
"!<rootDir>/**/__tests__/**"
],
"moduleNameMapper": {
"@8base/sdk-core": "<rootDir>/../../core/8base-sdk/src/index.ts",
"@8base/api-client": "<rootDir>/../../core/api-client/src/index.ts",
"@8base/api-token-auth-client": "<rootDir>/../../core/api-token-auth-client/src/index.ts",
"@8base/apollo-client": "<rootDir>/../../core/apollo-client/src/index.ts",
"@8base/apollo-links": "<rootDir>/../../core/apollo-links/src/index.ts",
"@8base/auth": "<rootDir>/../../core/auth/src/index.ts",
"@8base/utils": "<rootDir>/../../core/utils/src/index.ts",
"@8base/validate": "<rootDir>/../../core/validate/src/index.ts",
"@8base/web-auth0-auth-client": "<rootDir>/../../core/web-auth0-auth-client/src/index.ts",
"@8base/web-cognito-auth-client": "<rootDir>/../../core/web-cognito-auth-client/src/index.ts",
"@8base/web-native-auth-client": "<rootDir>/../../core/web-native-auth-client/src/index.ts",
"@8base/web-oauth-client": "<rootDir>/../../core/web-oauth-client/src/index.ts",
"@8base/sdk-react": "<rootDir>/../../react/8base-react-sdk/src/index.ts",
"@8base/react-app-provider": "<rootDir>/../../react/app-provider/src/index.ts",
"@8base/react-auth": "<rootDir>/../../react/auth/src/index.ts",
"@8base/react-crud": "<rootDir>/../../react/crud/src/index.ts",
"@8base/react-file-input": "<rootDir>/../../react/file-input/src/index.ts",
"@8base/react-forms": "<rootDir>/../../react/forms/src/index.ts",
"@8base/react-permissions-provider": "<rootDir>/../../react/permissions-provider/src/index.ts",
"@8base/react-table-schema-provider": "<rootDir>/../../react/table-schema-provider/src/index.ts",
"@8base/react-utils": "<rootDir>/../../react/utils/src/index.ts"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
]
},
"license": "MIT"
}