forked from ethersphere/swarm-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.84 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "swarm-desktop",
"productName": "Swarm Desktop",
"author": {
"name": "Swarm Association",
"email": "[email protected]"
},
"version": "0.43.2",
"description": "Desktop client for running and managing bee",
"homepage": "https://desktop.ethswarm.org/",
"repository": "https://github.com/ethersphere/swarm-desktop",
"main": "dist/desktop/src/index.js",
"scripts": {
"start": "concurrently -n \"desktop,ui\" \"cross-env-shell NODE_ENV=development 'npm run clean && npm run build && electron-forge start'\" \"cd ui && npm start\"",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"publish:mac:arm64": "electron-forge publish --platform=darwin --arch=arm64",
"publish:mac:x64": "electron-forge publish --platform=darwin --arch=x64",
"publish:linux:arm64": "electron-forge publish --platform=linux --arch=arm64",
"build:ui": "cd ui && npm run build && cd ..",
"build:desktop": "tsc",
"build": "npm run build:desktop && npm run build:ui && npm run copy:ui",
"copy:ui": "node devkit.mjs copy:ui",
"open:ui": "node devkit.mjs open:ui",
"purge:data": "node devkit.mjs purge:data",
"purge:logs": "node devkit.mjs purge:logs",
"clean": "rimraf dist out",
"depcheck": "depcheck . && depcheck ui/",
"lint": "eslint --fix \"src/**/*.ts\" && cd ui && npm run lint",
"lint:check": "eslint \"src/**/*.ts\" && cd ui && npm run lint:check",
"check:types": "tsc --project tsconfig.test.json && cd ui && tsc --project tsconfig.test.json",
"test:unit": "jest --verbose --config=jest.config.js"
},
"keywords": [
"bee",
"swarm",
"decentralised",
"storage",
"ethereum",
"typescript",
"p2p",
"electron",
"desktop"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@electron-forge/cli": "^6.0.0-beta.64",
"@electron-forge/maker-deb": "^6.0.0-beta.64",
"@electron-forge/maker-dmg": "^6.0.0-beta.64",
"@electron-forge/maker-rpm": "^6.0.0-beta.64",
"@electron-forge/maker-squirrel": "^6.0.0-beta.64",
"@electron-forge/maker-zip": "^6.0.0-beta.64",
"@electron-forge/publisher-github": "^6.0.0-beta.64",
"@kayahr/jest-electron-runner": "^4.4.1",
"@types/cross-zip": "^4.0.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/koa": "^2.13.4",
"@types/koa__router": "^8.0.11",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-mount": "^4.0.1",
"@types/koa-static": "^4.0.2",
"@types/node-fetch": "^2.6.1",
"@types/node-notifier": "^8.0.2",
"@types/opener": "^1.4.0",
"@types/request-stats": "^3.0.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"concurrently": "^7.2.2",
"cpy": "^9.0.1",
"cross-env": "^7.0.3",
"depcheck": "^1.4.3",
"electron": "18.0.1",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.5.1",
"open": "^9.1.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "~4.5.4"
},
"dependencies": {
"@koa/router": "^10.1.1",
"cross-zip": "^4.0.0",
"electron-squirrel-startup": "^1.0.0",
"env-paths": "2",
"ethereumjs-wallet": "^1.0.2",
"ethers": "^5.6.6",
"file-stream-rotator": "^0.6.1",
"fs-extra": "^10.1.0",
"js-yaml": "^4.1.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"node-fetch": "^2.6.7",
"node-notifier": "^10.0.1",
"opener": "^1.5.2",
"request-stats": "^3.0.0",
"update-electron-app": "^2.0.1",
"uuid": "^8.3.2",
"winston": "^3.7.2"
}
}