-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "reason-handbook",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack",
"dev": "npm run clean && npm run build && webpack-dev-server"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"apollo-cache-inmemory": "^1.3.11",
"apollo-client": "^2.4.7",
"apollo-link": "^1.2.4",
"apollo-link-context": "^1.0.10",
"apollo-link-error": "^1.1.2",
"apollo-link-http": "^1.5.6",
"apollo-link-ws": "^1.0.10",
"apollo-upload-client": "^9.1.0",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.0",
"re-formality": "^1.0.0-beta.4",
"react": "^16.2.0",
"react-apollo": "^2.3.1",
"react-dom": "^16.2.0",
"reason-apollo": "^0.14.2",
"reason-react": ">=0.4.0",
"subscriptions-transport-ws": "^0.9.15"
},
"devDependencies": {
"bs-platform": "^4.0.6",
"graphql_ppx": "^0.2.8",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.0.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.10"
}
}