-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
82 lines (82 loc) · 2.29 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "hapicycle",
"version": "0.0.1",
"description": "HapiCycle",
"main": "build/server.js",
"engines": {
"node": "^6.2.0",
"npm": "^3.8.9"
},
"env": {
"development": {
"hostname": "localhost",
"port": "1337"
},
"production": {
"hostname": "localhost",
"port": "80"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf ./.tmp/*",
"build": "node ./node_modules/.bin/webpack",
"heroku-build": "npm run build",
"start": "node build/server.js || echo 'A server error occured, have you ran `$ npm run build` yet?'",
"launch": "npm run build && npm run start",
"dev": "node ./node_modules/.bin/webpack-dev-server"
},
"author": "Damon Poole",
"license": "ISC",
"dependencies": {
"@cycle/collection": "^0.3.0",
"@cycle/dom": "^12.2.2",
"@cycle/http": "^11.0.0",
"@cycle/isolate": "^1.4.0",
"@cycle/xstream-run": "^3.1.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-es2016": "^6.11.3",
"computed-style": "^0.3.0",
"copy-webpack-plugin": "^3.0.1",
"crypto-js": "^3.1.6",
"css-loader": "^0.24.0",
"cycle-hmr": "^0.3.1",
"cyclic-router": "^2.1.2",
"dogwater": "^2.1.0",
"extract-text-webpack-plugin": "^1.0.1",
"purifycss-webpack-plugin": "^2.0.3"
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"font-awesome": "^4.6.3",
"git-rev-sync": "^1.6.0",
"hapi": "^15.0.2",
"hapi-webpack": "^1.0.0",
"hapi-webpack-plugin": "^1.3.0",
"history": "^3.0.0",
"html-loader": "^0.4.3",
"inert": "^4.0.2",
"isomorphic-loader": "^1.6.0",
"jsdom": "^9.4.2",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"markdown-loader": "^0.1.7",
"node-loader": "^0.5.0",
"sails-memory": "^0.10.7",
"snabbdom-virtualize": "^0.6.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"waterline": "^0.12.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.15.0",
"webpack-env": "^0.8.0",
"webpack-hot-middleware": "^2.12.2",
"webpack-node-externals": "^1.3.3",
"xstream": "^6.2.0"
},
"devDependencies": {}
}