forked from arj03/ssb-browser-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.77 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": "ssb-browser-demo",
"description": "",
"version": "5.5.4",
"homepage": "https://github.com/arj03/ssb-browser-demo",
"repository": {
"type": "git",
"url": "[email protected]:arj03/ssb-browser-demo.git"
},
"dependencies": {
"@toast-ui/vue-editor": "^3.0.0",
"clipboard-copy": "^4.0.1",
"envify": "^4.1.0",
"human-time": "0.0.2",
"minisearch": "^3.0.2",
"node-emoji": "^1.10.0",
"pull-async-filter": "^1.0.0",
"pull-cat": "^1.1.11",
"pull-stream": "^3.6.14",
"rimraf": "^3.0.2",
"ssb-browser-core": "^11.0.0",
"ssb-caps": "^1.1.0",
"ssb-keys-mnemonic": "^1.0.1",
"ssb-markdown": "^6.0.7",
"ssb-mentions": "^0.5.2",
"ssb-ref": "^2.14.3",
"ssb-sort": "^1.1.3",
"ssb-threads": "^8.0.0",
"vue": "^2.6.12",
"vue-i18n": "^8.22.4",
"vue-router": "^3.5.1",
"vue-select": "^3.11.2",
"vue-simple-context-menu": "^3.4.1"
},
"devDependencies": {
"browserify": "^17.0.0",
"esmify": "^2.1.1",
"inline-source-cli": "^2.0.0",
"terser": "^5.6.0",
"uglifyify": "^5.0.2",
"workbox-build": "^6.1.0"
},
"scripts": {
"postinstall": "./dedupe.sh",
"build": "mkdir -p build && NODE_ENV=production browserify -g envify -p esmify --full-paths ui/browser.js > build/bundle-ui.js && node write-dist.js",
"release": "mkdir -p build && NODE_ENV=production browserify -g envify -g uglifyify -p esmify ui/browser.js | terser -c passes=2 --safari10 -o build/bundle-ui.js && node write-dist.js",
"inline": "mkdir -p build && browserify -g uglifyify -p esmify ui/browser.js | terser -c passes=2 --ie8 --safari10 -o build/bundle-ui.js && node write-dist.js && ./convert-to-inline.sh",
"finddupes": "npx find-duplicate-dependencies"
},
"author": "arj",
"license": "Beerware"
}