-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
139 lines (139 loc) · 5.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "universal-react-relay-starter-kit",
"version": "0.1.0",
"description": "Create a React Relay app with server side rendering and code splitting",
"main": "client/main.js",
"engines": {
"node": ">=8"
},
"scripts": {
"clean": "rimraf build buildClient buildClientSSR",
"start": "npm run clean && npm run start:servers",
"start:combined": "npm-run-all --parallel clean relay-compiler:watch start:combined-server",
"start:servers": "npm-run-all --parallel relay-compiler:watch start:app start:graphql",
"start:app": "DEBUG=server* babel-node --inspect=9229 server/render",
"start:graphql": "nodemon --inspect=9230 --watch server/graphql --exec \"DEBUG=graphql* babel-node server/graphql\"",
"start:combined-server": "nodemon --inspect=9230 --watch server --exec \"DEBUG=server*,graphql* babel-node server/startCombined\"",
"start:prod": "npm-run-all --parallel start:prod:app start:prod:graphql",
"start:prod:app": "DEBUG=server* node build/server/render",
"start:prod:graphql": "DEBUG=graphql* node build/server/graphql",
"start:prod:combined": "DEBUG=server*,graphql* node build/server/startCombined",
"relay-compiler": "relay-compiler --src client --schema server/graphql/schema.graphql",
"relay-compiler:watch": "relay-compiler --src client --schema server/graphql/schema.graphql --watch",
"update-schema": "babel-node ./scripts/updateSchema.js",
"build": "npm run clean && npm run relay-compiler && npm run build:common && npm run build:server && npm run build:webpack && npm run build:client",
"build:common": "babel -d ./build/common/ ./common -s --copy-files",
"build:server": "babel -d ./build/server/ ./server -s --copy-files",
"build:webpack": "babel -d ./build/webpack ./webpack -s --copy-files",
"build:client": "cp -R ./client ./build/client && webpack --json > ./build/server/render/clientStats.json --config ./build/webpack/client.prod.js && webpack --json > ./build/server/render/serverStats.json --config ./build/webpack/server.prod.js",
"build-langs": "babel-node ./i18n/bundleMessages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jkettmann/universal-react-relay-starter-kit.git"
},
"keywords": [
"starter-kit",
"boilerplater",
"graphql",
"relay",
"react",
"reactjs",
"ssr",
"server-side-rendering",
"universal",
"isomorphic",
"seo",
"internationalization",
"i18n"
],
"author": "Johannes Kettmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/jkettmann/universal-react-relay-starter-kit/issues"
},
"homepage": "https://github.com/jkettmann/universal-react-relay-starter-kit",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-react-intl": "^2.3.1",
"babel-plugin-relay": "^1.4.1",
"babel-plugin-styled-components": "^1.3.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-universal-import": "^1.3.3",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"eslint": "^4.12.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"nodemon": "^1.12.1",
"npm-run-all": "^4.1.2",
"react-addons-test-utils": "^15.6.2",
"webpack-dev-middleware": "^1.12.1",
"webpack-hot-middleware": "^2.20.0",
"webpack-hot-server-middleware": "^0.3.0",
"write-file-webpack-plugin": "^4.2.0"
},
"dependencies": {
"accept-language": "^3.0.18",
"amazon-cognito-identity-js": "^1.26.0",
"amazon-cognito-js": "^1.1.0",
"aws-sdk": "^2.156.0",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"classnames": "^2.2.5",
"compression": "^1.7.1",
"cookies": "^0.7.1",
"cors": "^2.8.4",
"debug": "^3.1.0",
"dotenv": "^4.0.0",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"express-no-favicons": "^0.0.1",
"express-session": "^1.15.6",
"farce": "^0.2.3",
"found": "^0.3.5",
"found-relay": "v0.3.0-alpha.9",
"graphql": "^0.11.7",
"graphql-errors": "^2.1.0",
"graphql-relay": "^0.5.3",
"helmet": "^3.9.0",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"js-cookie": "^2.2.0",
"jsonwebtoken": "^8.1.0",
"jwk-to-pem": "^1.2.6",
"lodash": "^4.17.4",
"path-to-regexp": "1.7.0",
"prop-types": "^15.6.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-helmet": "^5.2.0",
"react-hot-loader": "^3.1.3",
"react-intl": "^2.4.0",
"react-redux": "^5.0.6",
"react-relay": "^1.4.1",
"react-s3-uploader": "^4.5.1",
"react-social-login": "^3.4.1",
"react-tap-event-plugin": "^3.0.2",
"react-universal-component": "^2.7.0",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-form": "^7.1.2",
"relay-compiler": "^1.4.1",
"relay-compose": "^1.0.6",
"relay-compose-test": "^1.0.6",
"relay-runtime": "^1.4.1",
"serialize-javascript": "^1.4.0",
"styled-components": "^2.2.3",
"uuid": "^3.1.0",
"webpack": "^3.8.1",
"webpack-flush-chunks": "^1.2.2"
}
}