-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.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
{
"name": "todo-reason-dojo",
"version": "0.1.0",
"scripts": {
"build": "bsb -make-world",
"start:bsb": "bsb -make-world -w",
"start": "bsb -clean-world && concurrently -n \"WEBPACK,REASON\" \"npm:server\" \"npm:start:bsb\"",
"clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "webpack -w",
"webpack:production": "NODE_ENV=production webpack",
"server": "webpack-dev-server",
"deploy": "npm run build && npm run webpack:production && npx surge surge -p build"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"concurrently": "^4.1.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"reason-react": "^0.7.0"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.8",
"bs-platform": "5.0.1",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.23.1",
"surge": "^0.20.4",
"webpack": "^4.0.1",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.8"
}
}