-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 986 Bytes
/
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
{
"name": "mercurius-starter",
"version": "1.0.0",
"private": true,
"description": "Mercurius + GraphQL Code Generator example",
"keywords": [
"graphql-codegen"
],
"license": "MIT",
"author": "PabloSz",
"main": "dist/index.js",
"scripts": {
"dev": "bob-tsm --node-env=dev --cjs --watch=src src/index.ts",
"start": "bob-tsm --node-env=prod --cjs src/index.ts",
"test": "cross-env NODE_ENV=test tap --node-arg=--require=bob-tsm"
},
"dependencies": {
"altair-fastify-plugin": "^4.4.0",
"fastify": "^3.27.1",
"graphql": "^16.3.0",
"mercurius": "^9.3.2",
"mercurius-codegen": "latest"
},
"devDependencies": {
"@graphql-typed-document-node/core": "^3.1.1",
"@types/node": "^17.0.14",
"@types/tap": "^15.0.5",
"bob-tsm": "^0.4.6",
"cross-env": "^7.0.3",
"esbuild": "^0.14.22",
"mercurius-integration-testing": "^4.0.0",
"prettier": "^2.5.1",
"tap": "^15.1.6",
"typescript": "^4.5.5"
}
}