-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "reason-urql-ssr",
"version": "0.1.0",
"description": "An example of how to do server side rendering with reason-urql.",
"main": "index.bs.js",
"author": "Parker Ziegler <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "concurrently \"bsb -clean-world -make-world -w\" \"next dev\"",
"dev:reason": "bsb -make-world -w",
"dev:next": "next dev",
"clean": "bsb -clean-world",
"build": "bsb -clean-world -make-world && next build",
"start": "next start"
},
"dependencies": {
"@zeit/next-css": "^1.0.1",
"babel-plugin-bucklescript": "^0.5.3",
"bs-fetch": "^0.5.0",
"isomorphic-unfetch": "^3.0.0",
"next": "^9.1.4",
"next-transpile-modules": "^2.3.1",
"next-urql": "^0.1.0",
"react-is": "^16.11.0",
"reason-react": "0.7.0",
"reason-urql": "^1.3.0",
"styled-components": "^4.4.1"
},
"devDependencies": {
"@baransu/graphql_ppx_re": "^0.3.2",
"bs-platform": "6.2.1",
"concurrently": "^5.0.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
}
}