forked from bmullan91/fastify-gql-upload
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "mercurius-upload",
"version": "8.0.0",
"description": "Fastify plugin to support GraphQL uploads using graphql-upload",
"keywords": [
"fastify",
"mercurius",
"gql",
"graphql",
"upload",
"file",
"files",
"typescript"
],
"homepage": "https://github.com/mercurius-js/mercurius-upload#readme",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius-upload/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/mercurius-upload.git"
},
"license": "ISC",
"author": "PabloSzx",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "tsc && prettier --write dist index.ts test",
"test": "tap --ts --100 test/*.test.ts"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"graphql-upload-minimal": "^1.6.1"
},
"devDependencies": {
"@types/node": "^20.5.0",
"@types/tap": "^15.0.7",
"cross-env": "^7.0.3",
"fastify": "^5.0.0",
"form-data": "^4.0.1",
"graphql": "^16.5.0",
"mercurius": "^15.0.0",
"prettier": "^3.3.3",
"tap": "^16.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"graphql": "^16.3.0"
}
}