-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.19 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
{
"title": "Unicycle — Universal Cylce & Koa boilerplate with Webpack configured for ServiceWorker and HMR out of the box",
"name": "unicycle",
"version": "0.0.1",
"description": "Universal Cylce & Koa boilerplate with Webpack configured for ServiceWorker and HMR out of the box",
"main": "build/server/index.js",
"scripts": {
"start": "npm run build:clean && npm run build && node ./build/server/index.js",
"start:dev": "export NODE_ENV=development && npm run build:clean && npm run build && node ./build/server/index.js",
"build": "tslint --project ./tsconfig.json && webpack",
"build:clean": "rm -rf ./build/ && mkdir -p ./build/",
"test": "export NODE_ENV=test && npm run build && ava \"build/**/*.spec.js\"",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/wyqydsyq/unicycle.git"
},
"author": "Damon Poole",
"license": "MIT",
"homepage": "https://github.com/wyqydsyq/unicycle",
"devDependencies": {
"@types/node": "^7.0.22",
"awesome-typescript-loader": "^3.1.3",
"babel": "^6.23.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-latest": "^6.24.1",
"koa-webpack-hot-middleware": "^1.0.3",
"offline-plugin": "^4.8.1",
"source-map-support": "^0.4.15",
"tslint": "^5.3.2",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.3",
"webpack": "^2.6.0",
"webpack-dev-middleware": "^1.10.2",
"webpack-env": "^0.8.0",
"webpack-node-externals": "^1.6.0"
},
"dependencies": {
"@cycle/dom": "^17.3.0",
"@cycle/history": "^6.2.0",
"@cycle/html": "^1.0.0",
"@cycle/http": "^13.3.0",
"@cycle/run": "^3.1.0",
"@cycle/time": "^0.8.0",
"ava": "^0.19.1",
"ava-spec": "^1.1.0",
"copy-webpack-plugin": "^4.0.1",
"cycle-restart": "^0.1.0",
"favicons-webpack-plugin": "^0.0.7",
"js-htmlencode": "^0.3.0",
"jsdom": "^11.0.0",
"koa": "^2",
"koa-mount": "^3.0.0",
"koa-send": "^4.1.0",
"koa-static": "^3.0.0",
"koa-webpack-dev-middleware": "^1.4.6",
"ramda": "^0.23.0",
"snabbdom-virtualize": "^0.6.0",
"switch-path": "^1.2.0",
"typestyle": "^1.3.2",
"xstream": "^10.8.0"
}
}