-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 984 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
{
"name": "reason-elixir-starter",
"version": "0.1.0",
"scripts": {
"build": "npm-run-all re-build bundle-build",
"start": "npm-run-all -lnpr re-watch bundle-watch",
"server": "mix phx.server",
"dev": "npm-run-all -lnpr re-watch bundle-watch server",
"bundle-watch": "parcel watch src/Index.bs.js -d priv/static/js --out-file app.js",
"bundle-build": "parcel build src/Index.bs.js -d priv/static/js --out-file app.js",
"re-build": "bsb -make-world",
"re-watch": "bsb -make-world -w -ws _ ",
"re-clean": "bsb -clean-world",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"author": "iainkirkpatrick",
"license": "MIT",
"dependencies": {
"react": "^16.8.1",
"react-dom": "^16.8.1",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"bs-platform": "^6.2.1",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4"
}
}