-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"name": "graphql-test",
"version": "1.0.0",
"description": "An example project with GraphQL, Relay, and React.",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node server.js",
"dev": "NODE_ENV=development nodemon server.js",
"build": "rm -rf dist && webpack -p --config webpack.production.js",
"test": "mocha",
"flow": "flow"
},
"author": "David Sims",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.2.1",
"apollo-client": "^2.3.1",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"auth0-js": "^9.5.1",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-jwt": "^5.3.1",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-type-factory": "^0.1.0",
"history": "^4.7.2",
"http-server": "^0.11.1",
"jwks-rsa": "^1.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.10",
"material-ui": "^0.20.0",
"node-fetch": "^2.1.2",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"tcomb-form": "^0.9.19"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"faker": "^4.1.0",
"flow-bin": "^0.39.0",
"graphiql": "^0.11.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^18.1.0",
"mocha": "^5.1.1",
"mongoose": "^5.1.0",
"nodemon": "^1.17.4",
"style-loader": "^0.21.0",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dashboard": "^1.1.1",
"webpack-dev-middleware": "^3.1.3",
"webpack-dev-server": "^2.3.0",
"webpack-node-externals": "^1.7.2"
}
}