This repository was archived by the owner on Jun 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.31 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.31 KB
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
{
"name": "reason-react-starter",
"private": true,
"version": "0.2.0",
"description": "",
"scripts": {
"build:re": "bsb -make-world",
"watch:re": "bsb -make-world -w",
"build:client": "webpack",
"watch:client": "webpack -w",
"build:server": "webpack --config webpack.server.config.js",
"watch:server": "webpack --config webpack.server.config.js -w",
"build": "bsb -make-world && yarn build:client && yarn build:server",
"start": "node build/server",
"predev": "bsb -clean-world | yarn build",
"dev": "concurrently \"bsb -make-world -w\" \"node build/server\"",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack -w",
"prepare": "npm link bs-platform"
},
"dependencies": {
"express": "^4.16.2",
"fela": "^6.1.0",
"fela-dom": "^7.0.0",
"fela-plugin-embedded": "^5.2.1",
"fela-plugin-extend": "^6.0.2",
"fela-plugin-fallback-value": "^5.0.15",
"fela-plugin-lvha": "^5.0.14",
"fela-plugin-named-keys": "^1.0.0",
"fela-plugin-placeholder-prefixer": "^5.0.15",
"fela-plugin-prefixer": "^5.0.15",
"fela-plugin-unit": "^5.0.14",
"fontfaceobserver": "^2.0.13",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-fela": "^6.1.1",
"react-ga": "^2.3.5",
"react-helmet": "^5.2.0",
"react-router-dom": "^4.2.2"
},
"devDependencies": {
"bs-css-core": "^0.1.0",
"bs-express": "0.0.5",
"bs-react-fela": "^0.2.0",
"clean-webpack-plugin": "^0.1.17",
"concurrently": "^3.5.1",
"copy-webpack-plugin": "^4.2.3",
"file-loader": "^1.1.5",
"html-webpack-plugin": "^2.30.1",
"react-hot-loader": "^3.1.3",
"reason-react": "^0.3.0",
"rollup-loader": "^0.3.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"sw-precache-webpack-plugin": "^0.11.4",
"uglifyjs-webpack-plugin": "^1.1.2",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-closure-compiler": "^2.1.5",
"webpack-common-shake": "^1.5.3",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^2.9.5",
"webpack-hot-middleware": "^2.21.0",
"webpack-manifest-plugin": "^2.0.0-rc.1",
"webpack-node-externals": "^1.6.0",
"webpack-rollup-loader": "^0.5.0"
}
}