-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
55 lines (55 loc) · 1.55 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
{
"scripts": {
"css": "node-sass main.scss > style.css",
"watch": "find -name \"*.js\" ! -name \"bundle.js\" ! -path \"*node_modules*\" | entr browserifyinc -vd app.js -o bundle.js",
"build": "browserify app.js -o bundle.js && npm run css",
"build-prod": "env NODE_ENV=production npm run build"
},
"browserify": {
"transform": [
[
"bubleify",
{
"transforms": {
"dangerousTaggedTemplateString": true
},
"objectAssign": "xtend",
"sourceMap": true
}
]
]
},
"dependencies": {
"based-blob": "^1.0.1",
"debounce": "^1.0.2",
"draft-js": "^0.10.1",
"fetch-js": "^1.0.3",
"fwitch": "^1.0.1",
"gray-matter": "^3.0.2",
"mobx": "^4.1.1",
"mobx-react": "^5.0.0",
"page": "^1.7.1",
"prosemirror-example-setup": "^0.22.0",
"prosemirror-markdown": "^0.22.0",
"prosemirror-menu": "^0.22.0",
"prosemirror-state": "^0.22.0",
"prosemirror-view": "^0.22.0",
"qs": "^6.5.0",
"react": "^15.6.1",
"react-codemirror": "github:skidding/react-codemirror#bcbb50b",
"react-dom": "^15.6.1",
"react-dropzone": "^3.13.3",
"react-hyperscript": "^3.0.0",
"react-json": "github:fiatjaf/react-json#980ae69ab4cd22bacfb40022f7ccd33019bc3c4e",
"react-treeview": "^0.4.7",
"readable-blob-stream": "^1.1.0",
"render-media": "^2.10.0"
},
"devDependencies": {
"browserify": "^14.3.0",
"browserify-incremental": "^3.1.1",
"bubleify": "^1.1.0",
"bulma": "^0.5.0",
"node-sass": "^4.5.3"
}
}