-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
45
46
47
48
49
{
"name": "cycle-iso",
"version": "0.1.0",
"description": "A simple isomorphic cycle app starter",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --progress --colors --watch",
"start": "./node_modules/.bin/babel-node server",
"webpack": "webpack-dev-server --content-base driver/ --hot --inline --history-api-fallback"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syarul/cycle-iso.git"
},
"keywords": [
"cycle.js",
"frp",
"pure function",
"falcor.js",
"JSON Graph",
"isomorphic"
],
"author": "Shahrul Nizam Selamat",
"license": "ISC",
"bugs": {
"url": "https://github.com/syarul/cycle-iso/issues"
},
"homepage": "https://github.com/syarul/cycle-iso#readme",
"dependencies": {
"@cycle/dom": "^10.0.0-rc21",
"@cycle/history": "^3.1.0",
"@cycle/xstream-run": "^1.1.0",
"express": "^4.13.4",
"falcor": "^0.1.17",
"falcor-express": "^0.1.2",
"falcor-http-datasource": "^0.1.3",
"falcor-router": "^0.4.0",
"history": "^2.1.1",
"xstream": "^2.2.1"
},
"devDependencies": {
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
}
}