-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
92 lines (92 loc) · 2.69 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
{
"name": "@urql/devtools",
"version": "2.0.3",
"description": "The official exchange for use with Urql Devtools",
"main": "dist/urql-devtools-exchange.js",
"module": "dist/urql-devtools-exchange.es.js",
"types": "dist/types/index.d.ts",
"source": "src/index.ts",
"sideEffects": false,
"scripts": {
"start": "yarn build -w",
"clean": "rimraf ./dist ./node_modules/.cache",
"build": "rollup -c rollup.config.js",
"test": "jest",
"lint": "eslint . --ext .ts,.tsx",
"check": "tsc --noEmit",
"example:init": "./scripts/create-example.sh",
"example:start": "cd example && yarn start",
"example:build": "cd example && NODE_ENV=development yarn build --no-minify",
"prettier-check": "prettier -c .",
"prepublishOnly": "run-s clean build",
"changelog": "docker run -it --rm -v \"$(pwd)\":/usr/local/src/your-app ferrarimarco/github-changelog-generator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FormidableLabs/urql-devtools-exchange.git"
},
"keywords": [
"devtools",
"urql",
"graphql",
"exchange"
],
"author": "Formidable",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/urql-devtools-exchange/issues"
},
"homepage": "https://github.com/FormidableLabs/urql-devtools-exchange#readme",
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/plugin-transform-object-assign": "^7.10.1",
"@rollup/plugin-babel": "^5.0.3",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^25.2.3",
"@types/node": "^12.12.39",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@urql/core": "^1.15.0",
"babel-plugin-closure-elimination": "^1.3.1",
"babel-plugin-transform-async-to-promises": "^0.8.15",
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"graphql": "^15.0.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.15.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"dependencies": {
"wonka": ">= 4.0.9"
},
"peerDependencies": {
"@urql/core": ">= 1.14.0",
"graphql": ">= 0.11.0"
}
}