-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.12 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
{
"name": "reason-react-starter",
"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",
"clean": "yarn run bsb-clean",
"js-watch": "webpack-dev-server --hot --inline",
"bsb-build": "bsb -make-world",
"bsb-watch": "bsb -make-world -w",
"bsb-clean": "bsb -clean-world"
},
"dependencies": {
"bs-css": "12.1.0",
"bs-css-emotion": "1.1.0",
"normalize.css": "8.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"reason-react": "0.7.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@babel/preset-env": "7.9.0",
"@babel/preset-react": "7.9.1",
"babel-loader": "8.1.0",
"bs-platform": "7.2.2",
"clean-webpack-plugin": "3.0.0",
"concurrently": "5.1.0",
"css-loader": "3.4.2",
"html-loader": "1.0.0",
"html-webpack-plugin": "3.2.0",
"style-loader": "1.1.3",
"webpack": "4.42.0",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3"
},
"engines": {
"node": ">= 11.15.0"
}
}