-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 890 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 890 Bytes
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
{
"name": "reasonreact-webpack",
"version": "0.1.0",
"scripts": {
"build:reason": "bsb -make-world",
"build:webpack": "NODE_ENV=production webpack",
"build": "concurrently 'yarn build:reason' 'yarn build:webpack'",
"clean": "bsb -clean-world",
"start": "concurrently 'yarn start:reason' 'yarn start:webpack' webpack-dev-server",
"start:reason": "bsb -make-world -w",
"start:webpack": "webpack -w"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@glennsl/bs-json": "^3.0.0",
"bs-fetch": "^0.3.0",
"react": "16.4.2",
"react-dom": "16.4.2",
"reason-react": "^0.5.3"
},
"devDependencies": {
"bs-platform": "^4.0.6",
"concurrently": "^4.0.1",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
}
}