This repository has been archived by the owner on Jul 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.65 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
{
"name": "bff",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"codegen": "scripts/codegen.sh ./graphql",
"check": "tsc --noEmit",
"lint": "tslint --project .",
"test": "npm run codegen && npm run check && npm run lint",
"dev": "ts-node server",
"build": "next build",
"start": "NODE_ENV=production ts-node server/index.ts"
},
"dependencies": {
"apollo-cache-inmemory": "^1.1.11",
"apollo-client": "^2.2.7",
"apollo-link-http": "^1.5.3",
"apollo-server-express": "^1.3.2",
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"graphql-tools": "^2.23.1",
"isomorphic-unfetch": "^2.0.0",
"next": "^5.0.0",
"next-offline": "^2.2.0",
"react": "^16.2.0",
"react-apollo": "^2.1.0-beta.3",
"react-dom": "^16.2.0",
"styled-components": "^3.2.3"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/compression": "^0.0.36",
"@types/express": "^4.11.1",
"@types/graphql": "^0.12.5",
"@types/next": "^2.4.8",
"@types/node-fetch": "^1.6.7",
"@types/prop-types": "^15.5.2",
"@zeit/next-bundle-analyzer": "^0.1.0",
"@zeit/next-css": "^0.1.4",
"@zeit/next-typescript": "^0.0.10",
"apollo-codegen": "^0.19.0",
"babel-plugin-styled-components": "^1.5.1",
"lodash.flowright": "^3.5.0",
"next-plugin-graphql": "^0.0.1",
"prettier": "^1.11.1",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.10.0",
"tslint-plugin-prettier": "^1.3.0",
"typescript": "^2.7.2"
}
}