-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "dsdfsdfjklsdfjklsdfklj",
"version": "3.0.2-pre",
"description": "GraphQL for Next.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./client": "./dist/client.js",
"./guards": "./dist/guards.js",
"./helpers": "./dist/helpers.js"
},
"files": [
"**/*"
],
"engines": {
"node": ">=12"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"bump": "node_modules/npm-bump/bin/npm-bump.js",
"dist": "pnpm clean && pnpm build"
},
"author": "Ian Hunter <[email protected]>",
"repository": "https://github.com/ian/next-graphql",
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/next": "^9.0.0",
"@types/node": "^17.0.21",
"@types/react": "^17.0.19",
"boxen": "^5.0.1",
"clean-publish": "^4.0.0",
"jest": "^27.2.0",
"next": "^12.1.0",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.12",
"ts-jest": "^27.0.5",
"ts-node": "^10.1.0",
"typescript": "4.6.2"
},
"peerDependencies": {
"graphql": "16.3.0"
},
"dependencies": {
"@envelop/disable-introspection": "^3.3.2",
"@graphql-yoga/node": "^2.8.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"express": "^4.17.1",
"graphql": "16.3.0",
"graphql-middleware": "^6.1.4",
"graphql-playground-html": "^1.6.30",
"graphql-request": "^3.5.0",
"graphql-shield": "^7.5.0",
"micro": "^9.3.4",
"ora": "^5.4.1",
"pino": "^8.0.0"
}
}