-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"name": "instant-vdom-todo",
"version": "1.0.0",
"description": "Example of a build time hydration for virtual dom application",
"main": "index.js",
"scripts": {
"test": "npm run lint",
"lint": "standard --verbose --fix *.js src/**/*.js",
"build": "webpack && node hydrate-app.js && npm run copy-bottle-service",
"copy-bottle-service": "cp node_modules/bottle-service/dist/*.js dist/",
"webpack": "webpack",
"deploy": "grunty grunt-gh-pages gh-pages deploy.json",
"commit": "commit-wizard",
"start": "http-server dist -c-1",
"dev-start": "http-server dist -c-1 -p 3005"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/instant-vdom-todo.git"
},
"keywords": [
"virtual-dom",
"vdom",
"example",
"hydrate",
"todo"
],
"private": true,
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/instant-vdom-todo/issues"
},
"homepage": "https://github.com/bahmutov/instant-vdom-todo#readme",
"dependencies": {
"bottle-service": "1.2.4",
"check-more-types": "2.23.0",
"http-server": "0.9.0",
"lazy-ass": "1.5.0",
"tiny-toast": "1.1.0",
"todomvc-app-css": "2.0.6",
"todomvc-common": "1.0.2",
"vdom-to-html": "2.3.0",
"virtual-dom": "2.1.1"
},
"devDependencies": {
"css-loader": "0.25.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"fake-todos": "1.8.0",
"faker": "3.1.0",
"grunt": "1.0.1",
"grunt-gh-pages": "2.0.0",
"grunty": "0.3.0",
"html-to-vdom": "0.7.0",
"html2hscript": "2.0.1",
"js-beautify": "1.6.4",
"json-loader": "0.5.4",
"pre-git": "3.10.0",
"standard": "8.3.0",
"style-loader": "0.13.1",
"webpack": "2.1.0-beta.25"
},
"config": {
"pre-git": {
"commit-msg": [
"simple"
],
"pre-commit": [
"npm run lint",
"npm run test",
"npm run build"
],
"pre-push": [],
"post-commit": [],
"post-merge": []
}
}
}