generated from arecvlohe/reason-react-ssr-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.04 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
{
"name": "muscogee-creek-dictionary",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "concurrently \"yarn run js-watch\" \"yarn run bsb-watch\"",
"build": "yarn run bsb-clean && yarn run bsb-build && yarn run js-build",
"clean": "yarn run bsb-clean",
"serve": "yarn build && node src/server.js",
"js-watch": "webpack-dev-server --hot --inline --config webpack/webpack.config.dev.js",
"js-build": "webpack --config webpack/webpack.config.prod.js ",
"bsb-watch": "bsb -make-world -w",
"bsb-build": "bsb -make-world",
"bsb-clean": "bsb -clean-world"
},
"dependencies": {
"@glennsl/bs-json": "5.0.2",
"bs-dynamic-import": "0.4.0",
"bs-fetch": "0.5.2",
"express": "4.17.1",
"prerender-node": "3.2.5",
"react": "16.12.0",
"react-dom": "16.12.0",
"reason-loadable": "0.6.2",
"reason-react": "0.7.0",
"reason-react-update": "1.0.0",
"tailwindcss": "1.2.0"
},
"devDependencies": {
"@babel/core": "7.8.7",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.8.7",
"@babel/preset-react": "7.8.3",
"@fullhuman/postcss-purgecss": "2.1.0",
"autoprefixer": "9.7.4",
"babel-loader": "8.0.6",
"bs-platform": "7.1.1",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "3.1.0",
"concurrently": "5.1.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"dotenv": "8.2.0",
"dotenv-webpack": "1.7.0",
"glob": "7.1.6",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"mini-css-extract-plugin": "0.9.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-import": "12.0.1",
"postcss-loader": "3.0.0",
"preact": "10.3.3",
"purgecss-webpack-plugin": "2.1.0",
"style-loader": "1.1.3",
"terser-webpack-plugin": "2.3.5",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-manifest-plugin": "2.2.0",
"webpack-stats-plugin": "0.3.1",
"workbox-webpack-plugin": "5.0.0"
}
}