-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.96 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ipse-desktop",
"private": true,
"version": "0.9.2",
"productName": "IPSE Desktop",
"description": "IPSE Native Application",
"main": "out/index.js",
"scripts": {
"start": "cross-env NODE_ENV=development run-s build:babel start:electron",
"start:electron": "electron out/index.js",
"lint": "standard",
"test": "cross-env NODE_ENV=test mocha test/unit/**/*.spec.js -r @babel/register",
"test:e2e": "xvfb-maybe cross-env NODE_ENV=test mocha test/e2e/**/*.e2e.js -r @babel/register --exit",
"postinstall": "run-s install-app-deps build:webui",
"install-app-deps": "electron-builder install-app-deps",
"clean:webui": "shx rm -rf assets/webui/",
"build": "run-s build:*",
"build:webui": "run-s build:webui:*",
"build:webui:download": "npx ipfs-or-gateway -c QmUtMmxgHnDvQq4bpH6Y9MaLN1hpfjJz5LZcq941BEqEXs -p assets/webui/ -t 360000 --verbose",
"build:webui:minimize": "shx rm -rf assets/webui/static/js/*.map && shx rm -rf assets/webui/static/css/*.map",
"build:babel": "babel src --out-dir out --copy-files --source-maps",
"build:binaries": "electron-builder --publish onTag"
},
"keywords": [
"ipse",
"ipfs",
"station",
"desktop",
"app"
],
"repository": {
"type": "git",
"url": "https://github.com/IPSE-TEAM/ipse-desktop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/IPSE-TEAM/ipse-desktop/issues"
},
"homepage": "https://github.com/IPSE-TEAM/ipse-desktop",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"@svgr/cli": "^4.3.2",
"chai": "^4.2.0",
"cross-env": "^5.2.1",
"delay": "^4.3.0",
"dirty-chai": "^2.0.1",
"electron": "^6.0.9",
"electron-builder": "^21.2.0",
"mocha": "^6.2.0",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.3",
"shx": "^0.3.2",
"sinon": "^7.4.2",
"spectron": "^8.0.0",
"standard": "^14.3.0",
"tar": "^4.4.10",
"tmp": "0.1.0",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"auto-launch": "^5.0.5",
"countly-sdk-nodejs": "^19.8.0",
"electron-serve": "^0.4.0",
"electron-store": "^5.0.0",
"electron-updater": "^4.1.2",
"fix-path": "^2.1.0",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"go-ipfs-dep": "0.4.22",
"i18next": "^17.0.15",
"i18next-electron-language-detector": "0.0.10",
"i18next-icu": "^1.1.2",
"i18next-node-fs-backend": "^2.1.3",
"ipfsd-ctl": "^0.46.1",
"is-ipfs": "^0.6.1",
"multiaddr": "^7.1.0",
"multiaddr-to-uri": "^5.0.0",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"stream-to-pull-stream": "^1.7.3",
"sudo-prompt": "^9.0.0",
"which": "^1.3.1",
"winston": "^3.2.1",
"yargs": "^14.0.0"
},
"go-ipfs": {
"version": "v0.4.22"
}
}