-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "todomvc-cycle",
"version": "0.0.0",
"author": "Andre Staltz",
"repository": {
"type": "git",
"url": "git@github.com:staltz/todomvc-cycle.git"
},
"license": "MIT",
"private": true,
"contributors": [
{
"name": "Frederik Krautwald"
},
{
"name": "Kahlil Lechelt",
"email": "hello@kahlil.info"
}
],
"dependencies": {
"@cycle/collection": "^0.3.0",
"@cycle/dom": "10.0.0-rc33",
"@cycle/history": "^4.0.0",
"@cycle/isolate": "1.4.x",
"@cycle/storage": "3.0.0-rc2",
"@cycle/xstream-run": "3.0.0",
"history": "^3.0.0",
"todomvc-app-css": "2.0.3",
"todomvc-common": "1.0.1",
"xstream": "^5.0.5"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"babelify": "^7.2.0",
"browserify": "12.0.1",
"live-server": "^0.9.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^1.4.0",
"uglify-js": "2.6.1",
"watchify": "^3.6.1"
},
"scripts": {
"build-debug": "mkdirp js && browserify src/app.js -t babelify --outfile js/app.js",
"watch:js": "mkdirp js && watchify src/app.js -t babelify --outfile js/app.js -dv",
"serve": "live-server ./",
"uglify": "uglifyjs js/app.js -o js/app.min.js",
"build": "npm run build-debug && npm run uglify",
"start": "npm-run-all --parallel watch:js serve"
}
}