-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
38
39
{
"name": "si-reason",
"private": true,
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/scottcheng/si-reason.git"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o public/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o public/ --watch --recursive",
"build-re": "bsb -make-world",
"start-re": "bsb -make-world -w",
"clean-re": "bsb -clean-world",
"webpack": "webpack -w",
"build": "npm run build-scss && npm run build-re",
"start": "npm-run-all -p watch-css start-re webpack",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Scott Cheng <[email protected]> (http://scottcheng.com/)",
"bugs": {
"url": "https://github.com/scottcheng/si-reason/issues"
},
"homepage": "https://github.com/scottcheng/si-reason#readme",
"main": "index.js",
"keywords": [],
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2",
"reason-react": ">=0.2.1"
},
"devDependencies": {
"bs-platform": "^2.0.0",
"node-sass-chokidar": "0.0.3",
"npm-run-all": "^4.1.1",
"webpack": "^1.14.0"
}
}