forked from graffle-js/graffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.9 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": "@onfido/graphql-request",
"version": "1.1.0",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/onfido/graphql-request.git"
},
"keywords": [
"graphql",
"request",
"fetch",
"graphql-client",
"apollo",
"onfido"
],
"author": "Prisma Labs Team & Onfido",
"license": "MIT",
"bugs": {
"url": "https://github.com/onfido/graphql-request/issues"
},
"homepage": "https://github.com/onfido/graphql-request",
"scripts": {
"build:docs": "doctoc README.md --notitle",
"dev": "rm -rf dist && tsc --watch",
"dev:test": "jest --watch",
"format": "prettier --write .",
"prepublishOnly": "yarn build",
"build": "rm -rf dist && tsc -d",
"test:node": "jest --testEnvironment node",
"test:dom": "jest --testEnvironment jsdom",
"test": "yarn test:node && yarn test:dom"
},
"dependencies": {
"extract-files": "^9.0.0",
"form-data": "^3.0.0"
},
"peerDependencies": {
"graphql": ">=14"
},
"devDependencies": {
"@prisma-labs/prettier-config": "^0.1.0",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.8",
"@types/extract-files": "^8.1.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.8",
"apollo-server-express": "^2.18.2",
"body-parser": "^1.19.0",
"bundlesize": "^0.18.0",
"cross-fetch": "^3.1.4",
"doctoc": "^1.4.0",
"express": "^4.17.1",
"fetch-cookie": "^0.10.1",
"get-port": "^5.1.1",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"graphql-upload": "^11.0.0",
"jest": "^26.5.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"type-fest": "^0.18.0",
"typescript": "^4.0.3"
},
"prettier": "@prisma-labs/prettier-config",
"jest": {
"preset": "ts-jest"
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "1 kB"
}
]
}