-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 897 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": "reasonml_quick_guide",
"description": "A one-page guide to ReasonML.",
"version": "1.0.0",
"homepage": "https://github.com/amartincolby/ReasonML-Quick-Guide",
"repository": {
"type": "git",
"url": "https://github.com/amartincolby/ReasonML-Quick-Guide"
},
"author": "Aaron Martin-Colby <[email protected]> (https://github.com/amartincolby/)",
"license": "MIT",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w -ws _ ",
"clean": "bsb -clean-world",
"server": "moduleserve ./ --port 8000",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"BuckleScript",
"ReasonReact",
"reason-react"
],
"dependencies": {
"react": "16.8.1",
"react-dom": "16.8.1",
"reason-react": "0.7.0"
},
"devDependencies": {
"bs-platform": "^7.0.1",
"moduleserve": "^0.8.4"
}
}