-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.16 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "testing-apollo-containers-example",
"version": "1.0.0",
"description": "Repo demonstrating how to test react-apollo containers with apollo 2.0",
"main": "index.js",
"scripts": {
"build": "webpack",
"reinstall": "rm -rf node_modules && npm install",
"start": "node server",
"start:watch": "nodemon server --watch server --watch webpack.config.js",
"test:client": "karma start --single-run",
"test:client:watch": "karma start"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bdd-lazy-var": "^2.2.3",
"chai": "^4.1.2",
"css-hot-loader": "^1.3.9",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"extract-text-webpack-plugin": "^3.0.2",
"faker": "^4.1.0",
"hoek": "^5.0.3",
"karma": "^2.0.2",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.9",
"mocha": "^5.1.1",
"nodemon": "^1.17.4",
"rosie": "^2.0.1",
"sinon": "^5.0.4",
"wait-until-promise": "^1.0.0",
"webpack-dev-middleware": "^2.0.4",
"webpack-hot-middleware": "^2.22.1",
"whatwg-fetch": "^2.0.4"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.1",
"apollo-client": "^2.3.1",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"apollo-link-schema": "^1.1.0",
"classnames": "^2.2.5",
"config": "^1.30.0",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.0",
"hogan-express": "^0.5.2",
"prop-types": "^15.6.1",
"raw-loader": "^0.5.1",
"react": "^16.3.2",
"react-apollo": "^2.1.4",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"recompose": "^0.27.0",
"redux": "^4.0.0",
"webpack": "^3.10.0"
}
}