-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.4 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "gqlhn-client",
"version": "1.0.0",
"description": "A GraphQL client implementation for Hacker News",
"scripts": {
"analyze": "BUNDLE_ANALYZE=both next build src",
"analyze:browser": "BUNDLE_ANALYZE=browser next build src",
"analyze:server": "BUNDLE_ANALYZE=server next build src",
"apollo:generate": "apollo codegen:generate --excludes=node_modules/* --includes=**/*.tsx --localSchemaFile=../gqlhn-server/src/schema.graphql --outputFlat src/generated --tagName=gql --target=typescript",
"build": "next build src",
"dev": "next src",
"start": "next start src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/9andresc/gqlhn-client.git"
},
"author": "@9andresc",
"license": "MIT",
"bugs": {
"url": "https://github.com/9andresc/gqlhn-client/issues"
},
"homepage": "https://github.com/9andresc/gqlhn-client#readme",
"dependencies": {
"@emotion/core": "10.0.10",
"@emotion/styled": "10.0.10",
"@reach/dialog": "0.2.8",
"@reach/skip-nav": "0.1.3",
"@reach/tabs": "0.1.5",
"apollo-boost": "0.3.1",
"color": "3.1.1",
"emotion-theming": "10.0.10",
"fontfaceobserver": "2.1.0",
"graphql": "14.2.1",
"isomorphic-unfetch": "3.0.0",
"next": "8.0.4",
"react": "16.8.6",
"react-apollo-hooks": "0.5.0-alpha.0",
"react-dom": "16.8.6",
"sanitize.css": "8.0.0",
"what-input": "5.2.1"
},
"devDependencies": {
"@types/color": "3.0.0",
"@types/fontfaceobserver": "0.0.6",
"@types/graphql": "14.2.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/next": "8.0.3",
"@types/react": "16.8.13",
"@types/react-dom": "16.8.4",
"@types/styled-jsx": "2.2.8",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@typescript-eslint/parser": "1.6.0",
"@zeit/next-bundle-analyzer": "0.1.2",
"@zeit/next-css": "1.0.1",
"@zeit/next-typescript": "1.1.1",
"apollo": "2.9.0",
"babel-plugin-emotion": "10.0.9",
"dotenv": "7.0.0",
"dotenv-webpack": "1.7.0",
"eslint": "5.16.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"eslint-plugin-react-hooks": "1.6.0",
"husky": "2.1.0",
"prettier": "1.17.0",
"pretty-quick": "1.10.0",
"typescript": "3.4.3"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}