forked from insidewhy/wildcard-mock-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.34 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
{
"name": "wildcard-mock-link",
"version": "2.0.0-rc.6",
"description": "apollo client mocking",
"author": "insidewhy <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git://github.com/insidewhy/wildcard-mock-link.git"
},
"keywords": [
"apollo",
"mock",
"mocking",
"mocks",
"link"
],
"main": "dist.es5/index.js",
"module": "dist.es5m/index.js",
"es2015": "dist.es2015/index.js",
"typings": "dist.es2015/index",
"sideEffects": false,
"scripts": {
"prepublishOnly": "yarn build",
"build": "yarn build-modern && yarn build-es5 && yarn build-es5m",
"build-modern": "tsc -p src",
"build-es5": "tsc -p src --target es5 --outDir dist.es5",
"build-es5m": "yarn build-es5 -m es2015 --outDir dist.es5m",
"build-watch": "yarn build-es5 -w",
"clean": "rimraf 'dist*'",
"lint": "eslint 'src/*.ts'",
"lint-fix": "yarn lint --fix",
"run-prettier": "prettier 'src/*.ts' '*.md'",
"typecheck": "tsc -p src --noEmit",
"validate-prettiness": "yarn run-prettier -c",
"make-prettier": "yarn run-prettier --write",
"test": "yarn jest",
"watch": "yarn build-es5 && concurrently 'yarn build-watch' 'yarn jest-watch'",
"validate": "yarn test && yarn lint && yarn validate-prettiness",
"jest-watch": "yarn jest --watchAll"
},
"dependencies": {
"delay": "^5.0.0",
"fast-json-stable-stringify": "^2.1.0"
},
"devDependencies": {
"@apollo/client": "3.3.18",
"@testing-library/react": "11.2.7",
"@testing-library/react-hooks": "5.1.2",
"@types/jest": "26.0.23",
"@types/react": "17.0.5",
"@typescript-eslint/eslint-plugin": "4.24.0",
"@typescript-eslint/parser": "4.24.0",
"concurrently": "6.1.0",
"eslint": "7.26.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.2",
"eslint-plugin-react": "7.23.2",
"eslint-plugin-react-hooks": "4.2.0",
"graphql": "15.5.0",
"graphql-tag": "2.12.4",
"husky": "6.0.0",
"jest": "26.6.3",
"prettier": "2.3.0",
"pretty-quick": "3.1.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"typescript": "4.2.4"
},
"peerDependencies": {
"@apollo/client": "^3.3.15",
"graphql": "^14.5.8 || ^15.0.0"
},
"resolutions": {
"@types/react": "17.0.5"
}
}