-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.94 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
{
"name": "relay-connection-handler-plus",
"version": "0.1.2",
"description": "Relay connection handler with additional functionality",
"keywords": [
"relay",
"connection",
"handler"
],
"homepage": "https://github.com/relay-tools/relay-connection-handler-plus#readme",
"bugs": {
"url": "https://github.com/relay-tools/relay-connection-handler-plus/issues"
},
"license": "MIT",
"author": "4Catalyzer",
"files": [
"lib",
"es"
],
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/relay-tools/relay-connection-handler-plus.git"
},
"scripts": {
"build": "4c build src",
"format": "4c format --prettier-ignore .eslintignore .",
"lint": "4c lint --prettier-ignore .eslintignore .",
"prepublish": "yarn build",
"test": "yarn lint && yarn typecheck",
"typecheck": "tsc --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": "yarn 4c lint --fix --prettier-ignore .eslintignore"
},
"prettier": "@4c/prettier-config",
"dependencies": {
"@types/relay-runtime": ">=9.1.0"
},
"devDependencies": {
"@4c/babel-preset": "^7.4.1",
"@4c/cli": "^2.2.7",
"@4c/prettier-config": "^1.1.0",
"@4c/tsconfig": "^0.4.0",
"@babel/preset-typescript": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint-config-4catalyzer": "^1.2.0",
"eslint-config-4catalyzer-typescript": "^2.0.4",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"prettier": "^2.3.2",
"relay-runtime": "^10.1.3",
"typescript": "^4.3.4"
},
"peerDependencies": {
"relay-runtime": ">=9.0.0"
}
}