forked from lfades/next-with-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.64 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
{
"name": "@commbuds/next-with-apollo-hooks",
"private": false,
"version": "3.3.2",
"description": "Apollo HOC for Next.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"fix": "tslint -p tsconfig.json --fix",
"tslint": "tslint -c tslint.json -p tsconfig.json -t codeFrame",
"jest": "jest",
"test": "jest --coverage",
"build-ts": "tsc",
"watch": "tsc -w",
"build": "npm run build-ts",
"prepublishOnly": "npm run build && npm test"
},
"author": "lfades",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gradepotential/next-with-apollo.git"
},
"bugs": {
"url": "https://github.com/gradepotential/next-with-apollo/issues"
},
"prettier": {
"singleQuote": true
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"next": "^6.0.0 || ^7.0.0",
"react-apollo-hooks": "^0.4.0"
},
"devDependencies": {
"@types/graphql": "14.0.3",
"@types/jest": "^23.3.10",
"@types/next": "^7.0.5",
"@types/node": "^10.12.18",
"@types/prop-types": "^15.5.8",
"@types/react": "^16.7.17",
"apollo-client": "^2.4.8",
"graphql": "14.0.2",
"jest": "^23.6.0",
"next": "^7.0.2",
"prettier": "^1.16.4",
"react": "^16.6.3",
"ts-jest": "^23.10.5",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"@types/react-dom": "^16.0.11",
"isomorphic-unfetch": "^3.0.0",
"prop-types": "^15.6.2",
"react-apollo-hooks": "^0.4.0",
"react-dom": "^16.6.3"
}
}