-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
50 lines (50 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
{
"name": "relay-nextjs",
"version": "3.0.1",
"description": "Use Relay in your Next.js apps!",
"main": "index.js",
"scripts": {
"build": "tsc && cp -r dist/* . && rm -rf dist",
"clean": "rm *.js *.d.ts",
"format": "prettier --write .",
"check": "npm run check:prettier",
"check:prettier": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/RevereCRE/relay-nextjs.git"
},
"keywords": [
"relay",
"next",
"nextjs",
"graphql"
],
"author": "Ryan Delaney <rrdelaney@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/RevereCRE/relay-nextjs/issues"
},
"homepage": "https://github.com/RevereCRE/relay-nextjs#readme",
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/node": "^14.14.41",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-relay": "^11.0.0",
"@types/relay-runtime": "^10.1.10",
"@types/serialize-javascript": "^5.0.0",
"graphql": "^15.5.0",
"next": "^10.0.9",
"prettier": "^2.2.1",
"typescript": "^5.0.4"
},
"dependencies": {
"lodash.isequal": "^4.5.0",
"serialize-javascript": "^5.0.1"
},
"files": [
"*.js",
"*.d.ts"
]
}