This repository has been archived by the owner on Sep 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 3.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
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
{
"name": "website",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:TheGreatFilter/website.git",
"author": "Liam Curry <liam@sagan.software>",
"license": "MIT",
"babel": {
"presets": [
"env"
]
},
"scripts": {
"build": "bsb -make-world && webpack",
"clean": "bsb -clean",
"start-bsb": "bsb -make-world -w",
"start-web": "TARGET=web env-cmd ./.env.dev webpack-dev-server --hot --inline --progress",
"start-node": "TARGET=node env-cmd ./.env.dev webpack --watch",
"start": "bsb -clean && bsb -make-world && concurrently --raw --kill-others \"yarn start-bsb\" \"yarn start-web\" \"yarn start-node\""
},
"dependencies": {
"@glennsl/bs-json": "^2.0.0",
"@jsiebern/bs-material-ui": "^0.3.1",
"@material-ui/core": "^1.3.1",
"@material-ui/icons": "^1.1.0",
"apollo-cache-inmemory": "^1.2.5",
"apollo-client": "^2.3.5",
"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-schema": "^1.1.0",
"apollo-link-ws": "^1.0.8",
"apollo-server-express": "^1.3.6",
"apollo-utilities": "^1.0.16",
"assert": "^1.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"body-parser": "^1.18.3",
"bs-express": "^0.8.0",
"bs-fetch": "^0.3.0",
"bs-loader": "^2.0.4",
"bs-material-ui-icons": "^0.2.0",
"bs-platform": "^3.1.4",
"bs-typed-glamor": "github:glennsl/bs-typed-glamor",
"bs-webapi": "^0.9.1",
"clean-webpack-plugin": "^0.1.19",
"closure-webpack-plugin": "^0.0.24",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"css-loader": "^0.28.11",
"env-cmd": "^8.0.2",
"eosjs": "^15.0.0",
"express": "^4.16.3",
"file-loader": "^1.1.11",
"glamor": "^2.20.40",
"glamor-reset": "^3.0.0-3",
"graphql": "^0.13.2",
"graphql-iso-date": "^3.5.0",
"graphql-subscriptions": "^0.5.8",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.4",
"graphql_ppx": "^0.2.4",
"html-loader": "^0.5.5",
"html-minifier": "^3.5.15",
"html-webpack-plugin": "^3.2.0",
"isomorphic-fetch": "^2.2.1",
"mini-css-extract-plugin": "^0.4.0",
"moment": "^2.22.2",
"mongodb": "^3.0.10",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"postcss-loader": "^2.1.5",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"re-formality": "^0.9.1",
"react": "^16.4.0",
"react-apollo": "2.1.6",
"react-dom": "^16.4.0",
"react-helmet": "^5.2.0",
"react-instantsearch": "^5.0.3",
"react-loadable": "^5.4.0",
"reason-apollo": "github:apollographql/reason-apollo",
"reason-cli": "^3.1.0-linux",
"reason-react": "^0.4.1",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"subscriptions-transport-ws": "^0.9.11",
"svg-sprite": "^1.4.0",
"svgo": "^1.0.5",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.3",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"winston": "^3.0.0",
"write-file-webpack-plugin": "^4.3.2"
}
}