This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 3.4 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
{
"name": "snapmail",
"version": "0.1.9",
"description": "A minimalist web interface for Snapmail Holochain app",
"scripts": {
"all-ui": "concurrently --kill-others \"npm:billy-ui\" \"npm:alex-ui\" \"npm:camille-ui\"",
"alex-ui": "concurrently -k --names tsc,dev-server \"web-dev-server --config web-dev-server.config.mjs\"",
"billy-ui": "concurrently -k --names tsc,dev-server \"web-dev-server --config web-dev-server-billy.config.mjs\"",
"camille-ui": "concurrently -k --names tsc,dev-server \"web-dev-server --config web-dev-server-camille.config.mjs\"",
"clean": "rm -rf node_modules && rm package-lock.json && npm run clean:hc && rm -rf temp",
"clean:hc": "rm -rf .hc_live*",
"network": "npm run clean:hc && concurrently \"npm:alex\" \"npm:billy\" \"npm:camille\"",
"alex": "cross-env HC_PORT=8880 concurrently \"npm run start:happ\" \"sleep 5 && npm run start:alex\"",
"billy": "cross-env HC_PORT=8881 concurrently \"npm run start:happ\" \"sleep 5 && npm run start:billy\"",
"camille": "cross-env HC_PORT=8882 concurrently \"npm run start:happ\" \"sleep 5 && npm run start:camille\"",
"start:alex": "concurrently --names tsc,dev-server \"web-dev-server --config ./web-dev-server.config.mjs\"",
"start:billy": "concurrently --names tsc,dev-server \"web-dev-server --config ./web-dev-server-billy.config.mjs\"",
"start:camille": "concurrently --names tsc,dev-server \"web-dev-server --config ./web-dev-server-camille.config.mjs\"",
"start:happ": "RUST_LOG=warn WASM_LOG=debug echo \"pass\" | hc s --piped generate ../../bin/snapmail.happ --run=$HC_PORT -a snapmail-app network --bootstrap https://bootstrap-staging.holo.host/ quic -p=kitsune-proxy://SYVd4CF3BdJ4DS7KwLLgeU3_DbHoZ34Y-qroZ79DOs8/kitsune-quic/h/165.22.32.11/p/5779/--",
"devserver": "webpack-dev-server --env.mode development",
"dev": "webpack --config webpack.dev.js",
"release": "webpack --config webpack.release.js",
"prod": "webpack --config webpack.prod.js"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/glassbeadsoftware/snapmail/issues"
},
"homepage": "https://github.com/glassbeadsoftware/snapmail#readme",
"devDependencies": {
"@webcomponents/webcomponentsjs": "^2.4.3",
"copy-webpack-plugin": "^9.0.1",
"html-webpack-plugin": "^5.3.2",
"npm-run-all": "^4.1.5",
"style-loader": "^3.0.0",
"webpack": "^5.41.1",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@holochain/client": "0.7.0",
"@polymer/polymer": "^3.3.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@vaadin-component-factory/vcf-tooltip": "^1.2.2",
"@vaadin/vaadin": "^16.0.5",
"@vaadin/vaadin-dialog": "^2.5.2",
"@vaadin/vaadin-icons": "^4.3.1",
"@vaadin/vaadin-text-field": "^2.5.5",
"@web/dev-server": "0.0.13",
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"byte-base64": "^1.1.0",
"concurrently": "^5.1.0",
"cross-env": "^7.0.3",
"electron": "^13.1.4",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"path-browserify": "^1.0.1",
"prop-types": "^15.7.2",
"rollup": "^2.32.0",
"rollup-plugin-node-builtins": "^2.1.2",
"sjcl": "^1.0.8",
"stream": "^0.0.2",
"zlib": "^1.0.5"
},
"main": "webpack.common.js"
}