-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
131 lines (131 loc) · 3.6 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "found-relay",
"version": "1.0.2",
"description": "Relay integration for found",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "4c build src",
"build-fixtures": "npm run update-schema && npm run relay-compiler",
"format": "eslint --fix . && npm run prettier -- --write",
"lint": "eslint . && npm run prettier -- -l",
"prepublishOnly": "npm run build",
"prettier": "prettier --ignore-path .eslintignore '**/*.md'",
"relay-compiler": "relay-compiler --watchman false --src test --schema test/fixtures/schema.graphql",
"tdd": "jest --watch",
"test": "npm run build-fixtures && npm run lint && npm run testonly -- --coverage",
"testonly": "jest --runInBand --verbose",
"update-schema": "babel-node test/fixtures/updateSchema.js"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.md": "prettier --write",
"./README.md": "doctoc"
},
"prettier": {
"printWidth": 79,
"singleQuote": true,
"trailingComma": "all"
},
"jest": {
"collectCoverageFrom": [
"src/**"
],
"resetMocks": true,
"restoreMocks": true,
"setupFiles": [
"<rootDir>/test/setup.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/relay-tools/found-relay.git"
},
"keywords": [
"router",
"relay",
"react"
],
"author": "4Catalyzer",
"license": "MIT",
"bugs": {
"url": "https://github.com/relay-tools/found-relay/issues"
},
"homepage": "https://github.com/relay-tools/found-relay#readme",
"dependencies": {
"@babel/runtime": "^7.17.9",
"dequal": "^2.0.2",
"is-promise": "^4.0.0",
"prop-types": "^15.7.2",
"warning": "^4.0.3"
},
"peerDependencies": {
"found": ">=0.5.1",
"react": ">=16.9.0",
"react-relay": ">=12.0.0",
"relay-runtime": ">=12.0.0",
"@types/react-relay": ">=11.0.1",
"@types/relay-runtime": ">=12.0.0"
},
"peerDependenciesMeta": {
"@types/react-relay": {
"optional": true
},
"@types/relay-runtime": {
"optional": true
}
},
"devDependencies": {
"@4c/babel-preset": "^8.1.1",
"@4c/cli": "^3.0.1",
"@4c/tsconfig": "^0.4.0",
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.9",
"@babel/node": "^7.16.8",
"@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@types/react-relay": "^11.0.1",
"@types/relay-runtime": "^12.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-relay": "^10.1.3",
"codecov": "^3.8.3",
"delay": "^5.0.0",
"doctoc": "^2.1.0",
"eslint": "^8.12.0",
"eslint-config-4catalyzer-jest": "^2.2.0",
"eslint-config-4catalyzer-react": "^1.2.2",
"eslint-config-4catalyzer-typescript": "^3.2.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"farce": "^0.4.5",
"found": "^0.6.0",
"graphql": "^15.5.1",
"hookem": "^2.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"p-defer": "^3.0.0",
"prettier": "^2.6.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-relay": "^12.0.0",
"relay-compiler": "^12.0.0",
"relay-local-schema": "^0.8.0",
"relay-runtime": "^12.0.0",
"typescript": "^4.6.3"
}
}