Files
buuh/example/package.json
T
Marc Bachmann 5a6bf802ce Fix TodoMVC example (#618)
In choo-devtools@2.0.0 there were some conflicting methods.
On https://github.com/choojs/choo-devtools/blob/v2.0.0/index.js#L37
`window.choo.log` was set, which was a getter defined in
https://github.com/choojs/choo-devtools/blob/v2.0.0/lib/log.js#L21

This basically broke the whole app.
2018-01-15 20:06:59 +01:00

22 lines
455 B
JSON

{
"name": "choo-todomvc-example",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "bankai start",
"build": "bankai build",
"inspect": "bankai inspect",
"test": "standard && node test.js"
},
"dependencies": {
"choo-devtools": "^2.3.3",
"sheetify": "^6.0.1",
"todomvc-app-css": "^2.0.6",
"todomvc-common": "^1.0.3"
},
"devDependencies": {
"bankai": "^9.0.0-rc6",
"standard": "^9.0.1"
}
}