forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.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
{
"name": "graphql-request",
"version": "0.0.0-dripip",
"main": "dist/index.js",
"files": [
"dist"
],
"bundlesize": [
{
"path": "./dist/index.js",
"maxSize": "15 kB"
}
],
"repository": {
"type": "git",
"url": "https://github.com/prisma/graphql-request.git"
},
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client",
"apollo"
],
"author": "Prisma Labs Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/prisma/graphql-request/issues"
},
"engines": {
"node": "10.x || 12.x || 14.x"
},
"homepage": "https://github.com/prisma/graphql-request",
"scripts": {
"dev": "rm -rf dist && tsc --watch",
"dev:test": "jest --watch",
"format": "prettier --write .",
"prepublishOnly": "yarn build",
"build": "rm -rf dist && tsc -d",
"test": "jest",
"release:stable": "dripip stable",
"release:preview": "dripip preview",
"release:pr": "dripip pr"
},
"dependencies": {
"cross-fetch": "^3.0.4"
},
"devDependencies": {
"@prisma-labs/prettier-config": "^0.1.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.6",
"@types/fetch-mock": "5.12.2",
"@types/jest": "^25.2.3",
"@types/node": "10.17.24",
"body-parser": "^1.19.0",
"bundlesize": "^0.18.0",
"dripip": "^0.9.0",
"express": "^4.17.1",
"fetch-cookie": "0.7.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"type-fest": "^0.15.0",
"typescript": "^3.9.3"
},
"prettier": "@prisma-labs/prettier-config",
"jest": {
"preset": "ts-jest"
}
}