-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage copy.json
65 lines (65 loc) · 1.63 KB
/
package copy.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
{
"name": "electron-snek-miner",
"version": "1.0.0",
"private": true,
"description": "This serves as an entry point to future NodeJS Express projects.",
"main": "app.js",
"scripts": {
"start": "electron .",
"build-installer": "electron-builder",
},
"build": {
"appId": "com.kleberbaum.miner",
"win": {
"target": [
"nsis"
],
"icon": "src/icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"nsis": {
"uninstallDisplayName": "SNEK ipfs and ethereum miner",
"license": "LICENSE",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/snek-at/miner.git"
},
"keywords": [],
"author": "SNEK",
"license": "(EUPL-1.2)",
"bugs": {
"url": "https://github.com/snek-at/miner/issues/new?template=bug_report.md"
},
"homepage": ".",
"devDependencies": {
"electron": "^11.0.3",
"electron-builder": "^22.9.1",
"nodemon": "^2.0.4"
},
"dependencies": {
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"install": "^0.13.0",
"ipfs-api": "^26.1.2",
"ipfs-core": "^0.3.0",
"jsonwebtoken": "^8.5.1",
"node-fetch": "^2.6.1",
"npm": "^6.14.9",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"request": "^2.88.2",
"snek-client": "file:snek-client-0.2.0-rc.8.tgz",
"snek-intel": "file:snek-intel-0.2.0.tgz",
"web3": "^1.3.0",
"web3-eth-miner": "^2.0.0-alpha.1"
}
}