-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.48 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": "gcp-pubsub-debugger",
"version": "0.0.1",
"description": "Tool for debugging Google Cloud Platform PubSub",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"start:server": "node server/index",
"start:client": "FORCE_COLOR=true react-scripts start | cat",
"build:client": "react-scripts build",
"test:client": "react-scripts test client --env=jsdom",
"eject:client": "react-scripts eject",
"start": "npm-run-all --parallel start:server start:client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Franck Achkouyan <https://twitter.com/a_franck>",
"license": "ISC",
"devDependencies": {
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-react": "^7.8.2"
},
"dependencies": {
"@google-cloud/pubsub": "0.18.0",
"apollo-cache-inmemory": "1.1.12",
"apollo-client": "2.2.8",
"apollo-link": "1.2.1",
"apollo-link-error": "1.0.7",
"apollo-link-http": "1.5.3",
"apollo-link-ws": "1.0.7",
"async": "2.6.0",
"dotenv": "^5.0.1",
"graphql": "0.13.2",
"graphql-tag": "2.8.0",
"graphql-type-json": "0.2.0",
"graphql-yoga": "1.7.0",
"react": "16.3.0",
"react-apollo": "2.1.1",
"react-dom": "16.3.0",
"react-json-pretty": "1.7.5",
"react-router": "4.2.0",
"react-router-dom": "4.2.2",
"react-scripts": "1.1.1",
"styled-components": "3.2.5",
"yarn-run-all": "3.1.1"
}
}