-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.18 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
{
"version": "1.7.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint src test",
"prepare": "yarn build",
"docs": "typedoc docs src/index.ts",
"prepack": "yarn run docs && git add docs/",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "use-relay-mock-environment",
"author": "Richard Guerre @richardguerre",
"homepage": "https://github.com/richardguerre/use-relay-mock-environment",
"bugs": "https://github.com/richardguerre/use-relay-mock-environment/issues",
"repository": "richardguerre/use-relay-mock-environment",
"module": "dist/use-relay-mock-environment.esm.js",
"size-limit": [
{
"path": "dist/use-relay-mock-environment.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/use-relay-mock-environment.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^5.0.1",
"@types/react": "^17.0.13",
"@types/relay-test-utils": "^6.0.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"husky": "^7.0.0",
"react": "^17.0.2",
"react-relay": "^15.0.0",
"relay-test-utils": "^15.0.0",
"size-limit": "^5.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.6.2",
"typedoc": "^0.25.8",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@faker-js/faker": "^8.4.1",
"fuse.js": "^7.0.0"
},
"peerDependencies": {
"react": ">16",
"react-relay": ">11",
"relay-test-utils": ">11"
},
"resolutions": {
"**/@typescript-eslint/eslint-plugin": "^4.1.1",
"**/@typescript-eslint/parser": "^4.1.1"
},
"keywords": [
"react",
"relay",
"storybook",
"relay mock",
"relay environment",
"relay-runtime",
"relay-test-utils"
]
}