This repository has been archived by the owner on May 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "reasonreact-fullstack",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "serve -s dist",
"dev": "concurrently -c --kill-others 'npm:run-server' 'npm:watch:bsb'",
"prebuild": "npm run clean:dist",
"build": "bsb -make-world && NODE_ENV=production webpack",
"postbuild": "npm run copy:public ",
"watch:bsb": "bsb -make-world -w",
"run-server": "webpack-serve ./webpack.config.js",
"copy:public": "node tools/copy.js",
"clean:dist": "node tools/clean.js",
"deploy:now": "now --public dist",
"get-schema": "yarn send-introspection-query http://localhost:4000/"
},
"dependencies": {
"apollo-cache-inmemory": "^1.2.9",
"apollo-client": "^2.4.1",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.1.0",
"apollo-link-http": "^1.5.4",
"apollo-link-ws": "^1.0.8",
"bs-css": "^7.1.0",
"bs-dynamic-import": "^0.3.0",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"react": "^16.4.2",
"react-apollo": "^2.1.11",
"react-dom": "^16.4.2",
"react-helmet": "^5.2.0",
"react-hot-loader": "^4.3.5",
"reason-apollo": "^0.12.0",
"reason-loadable": "^0.4.0",
"reason-react": "^0.5.3",
"reason-reroute": "^0.0.4",
"subscriptions-transport-ws": "^0.9.14"
},
"devDependencies": {
"bs-platform": "^4.0.0",
"concurrently": "^4.0.1",
"connect-history-api-fallback": "^1.5.0",
"fs-extra": "^7.0.0",
"graphql_ppx": "^0.2.7",
"html-webpack-plugin": "^3.2.0",
"koa-connect": "^2.0.1",
"webpack": "^4.17.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-serve": "^2.0.2",
"webpackbar": "^2.6.3",
"workbox-webpack-plugin": "^3.4.1"
}
}