-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
43 lines (43 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
38
39
40
41
42
43
{
"name": "cyclejs-starter",
"version": "3.0.0",
"description": "Cycle.js starter template with ES6 and hot reload.",
"repository": {
"type": "git",
"url": "https://github.com/andreloureiro/cyclejs-starter"
},
"keywords": [
"reactive",
"framework",
"rxjs",
"rx",
"unidirectional",
"mvi",
"virtual-dom"
],
"scripts": {
"serve": "webpack-dev-server -d --progress --colors --inline",
"start": "npm install && npm run serve",
"build": "NODE_ENV=production webpack"
},
"author": "Andre Loureiro",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"@cycle/dom": "^10.0.2",
"@cycle/http": "^11.2.0",
"@cycle/isolate": "^1.4.0",
"@cycle/xstream-run": "^3.0.3",
"cyclic-router": "^2.1.2",
"history": "^3.0.0",
"ramda": "^0.21.0",
"xstream": "^5.0.6"
}
}