-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
44
{
"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-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"snabbdom-jsx": "^0.3.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"@cycle/core": "^6.0.0",
"@cycle/dom": "^10.0.2",
"@cycle/isolate": "^1.4.0",
"@cycle/xstream-run": "^3.0.3",
"cycle-restart": "0.0.14",
"immutable": "^3.8.1",
"xstream": "^5.0.6"
}
}