-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 2.14 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
69
70
{
"name": "react-apollo-ssr",
"version": "1.0.0",
"description": "Minimal react apollo SSR",
"repository": {
"type": "git",
"url": "git+https://github.com/zyhou/react-apollo-ssr.git"
},
"keywords": [
"React",
"Apollo",
"SSR",
"Minimal"
],
"author": "Maxime Richard",
"license": "MIT",
"bugs": {
"url": "https://github.com/zyhou/react-apollo-ssr/issues"
},
"homepage": "https://github.com/zyhou/react-apollo-ssr#readme",
"scripts": {
"start": "cross-env BABEL_ENV=node nodemon --exec babel-node -w src/server src/server/index.js",
"build:client": "cross-env BABEL_ENV=production NODE_ENV=production webpack --config webpack.prod.js",
"build:server": "cross-env BABEL_ENV=node NODE_ENV=production babel ./src -d dist",
"build:stats": "cross-env NODE_ENV=production BABEL_ENV=production webpack --config webpack.prod.js --profile --json > stats.json"
},
"dependencies": {
"@apollo/react-hooks": "3.0.0",
"@apollo/react-ssr": "3.0.0",
"@emotion/core": "10.0.15",
"@emotion/styled": "10.0.15",
"@loadable/component": "5.10.2",
"@loadable/server": "5.10.2",
"apollo-cache-inmemory": "1.6.2",
"apollo-client": "2.6.3",
"apollo-link-http": "1.5.15",
"babel-plugin-emotion": "10.0.15",
"core-js": "3",
"express": "4.17.1",
"graphql": "14.4.2",
"graphql-tag": "2.10.1",
"node-fetch": "2.6.0",
"prop-types": "15.7.2",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-helmet": "5.2.1",
"react-router": "5.0.1",
"react-router-dom": "5.0.1"
},
"devDependencies": {
"@babel/cli": "7.5.5",
"@babel/core": "7.5.5",
"@babel/node": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-react": "7.0.0",
"@loadable/babel-plugin": "5.10.0",
"@loadable/webpack-plugin": "5.7.1",
"babel-loader": "8.0.6",
"clean-webpack-plugin": "3.0.0",
"cross-env": "5.2.0",
"nodemon": "1.19.1",
"rimraf": "2.6.3",
"webpack": "4.39.1",
"webpack-bundle-analyzer": "3.4.1",
"webpack-cli": "3.3.6",
"webpack-dev-middleware": "3.7.0",
"webpack-hot-middleware": "2.25.0",
"webpack-merge": "4.2.1"
}
}