-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.18 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
{
"name": "cycle-js-http-tutorial",
"version": "1.0.0",
"description": "Example code for Cycle.js HTPP tutorial",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prebrowserify": "mkdirp dist",
"browserify": "browserify main.js -t babelify --outfile dist/main.js",
"start": "npm install && npm run browserify && echo 'OPEN index.html IN YOUR BROWSER' && babel-node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IvanJov/cycle-js-http-tutorial.git"
},
"author": "Ivan Jovanovic <[email protected]> (http://github.com/ivanjov)",
"license": "MIT",
"bugs": {
"url": "https://github.com/IvanJov/cycle-js-http-tutorial/issues"
},
"homepage": "https://github.com/IvanJov/cycle-js-http-tutorial#readme",
"dependencies": {
"@cycle/dom": "12.2.x",
"@cycle/http": "11.0.x",
"@cycle/xstream-run": "3.1.x",
"cors": "^2.8.1",
"express": "^4.14.0",
"xstream": "6.1.x"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"browserify": "13.0.0",
"mkdirp": "0.5.x"
}
}