-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "devdevdev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"gen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.5",
"@apollo/react-ssr": "^3.1.5",
"@zeit/next-sass": "^1.0.1",
"apollo-boost": "^0.4.9",
"apollo-link-context": "^1.0.20",
"apollo-link-token-refresh": "^0.3.1",
"apollo-server-core": "^2.14.2",
"apollo-server-micro": "^2.18.1",
"cookie": "^0.4.1",
"graphql": "^15.0.0",
"isomorphic-unfetch": "^3.0.0",
"jwt-decode": "^2.2.0",
"mongodb": "^3.6.2",
"next": "^9.4.4",
"next-auth": "^3.1.0",
"node-sass": "^4.14.1",
"pg": "^8.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"url-loader": "^4.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.15.1",
"@graphql-codegen/plugin-helpers": "^1.15.1",
"@graphql-codegen/typescript": "^1.15.1",
"@graphql-codegen/typescript-operations": "^1.15.1",
"@graphql-codegen/typescript-react-apollo": "^1.15.1",
"@now/node": "^1.6.1",
"@types/graphql": "^14.5.0",
"@types/react": "^16.9.35",
"graphql-let": "^0.10.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}