-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 901 Bytes
/
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
{
"name": "mazr",
"version": "0.1.0",
"scripts": {
"clear": "rimraf ./dist",
"prestart": "npm run clear",
"start": "concurrently \"npm run re:watch\" \"npm run server\"",
"build": "bsb -clean-world && bsb -make-world && webpack -p",
"re:watch": "bsb -make-world -w -ws _ ",
"re:clean": "bsb -clean-world",
"server": "cross-env NODE_ENV=development webpack-dev-server"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"author": "",
"license": "MIT",
"dependencies": {
"bs-css": "^12.1.0",
"bs-css-emotion": "^1.1.0",
"reason-react": "^0.7.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"devDependencies": {
"bs-platform": "^7.2.2",
"concurrently": "^5.1.0",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.2",
"rimraf": "^3.0.2",
"webpack-dev-server": "^3.10.3"
}
}