-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.67 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
{
"name": "karet-todomvc",
"private": true,
"description": "Karet TodoMVC",
"scripts": {
"build": "cp node_modules/babel-polyfill/dist/polyfill.min.js docs/app.js && NODE_ENV=production rollup -c -i src/todomvc.js -f iife >> docs/app.js",
"lint": "eslint src test",
"livereload:docs": "livereload docs",
"prepare": "npm run lint && npm run build",
"watch": "npm run watch:js & npm run livereload:docs & wait",
"watch:js": "NODE_ENV=dev rollup -w -c --sourcemap inline -i src/todomvc.js -f iife -o docs/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/calmm-js/karet-todomvc.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/calmm-js/karet-todomvc/issues"
},
"homepage": "https://github.com/calmm-js/karet-todomvc#readme",
"dependencies": {
"atom.storage": "^0.5.3",
"karet": "^2.1.0",
"karet.util": "^0.17.8",
"kefir": "^3.8.3",
"partial.lenses": "^13.9.0",
"ramda": "^0.25.0",
"react-dom": "^16.3.1",
"todomvc-app-css": "^2.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-react-constant-elements": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.7.0",
"livereload": "^0.7.0",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-watch": "^4.3.1"
}
}