-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.25 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
{
"name": "@liquidapps/edgeos",
"version": "2.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build:electron": "NODE_ENV=development webpack -c electron/electron-webpack.config.js",
"xtest": "env IPFS_HASH=`cat main.ipfshash` TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"test": "xvfb-run npm run xtest",
"deploy:ipfs":"ipfs --api=\"/dns/ipfs.liquidapps.io/tcp/5001\" add dist -r -Q > main.ipfshash",
"freshtest": "./scripts/start.sh && npm run build && npm run deploy:ipfs && npm test",
"build:ts": "webpack",
"build:cmake": "cd wasm && ./compile.sh && cd ..",
"postinstall": "electron-builder install-app-deps",
"build": "npm run build:cmake && npm run build:ts && npm run build:electron"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/core-js": "^0.9.41",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.39",
"chai": "^4.3.4",
"core-js": "^3.6.5",
"html-webpack-plugin": "^4.5.0",
"json-loader": "^0.5.7",
"mocha": "^8.3.2",
"source-map-loader": "^1.1.1",
"ts-loader": "^8.0.5",
"ts-node": "^9.1.1",
"typescript": "^4.0.5",
"webpack": "^4.44.1",
"webpack-cli": "^4.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.0.0",
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"bthreads": "^0.5.1",
"buffer": "^5.7.0",
"cids": "^1.0.2",
"core-js": "^3.6.5",
"electron": "^11.2.3",
"electron-builder": "^20.44.4",
"eosjs": "^20.0.0",
"ipfs": "^0.51.0",
"it-pipe": "^1.1.0",
"js-yaml": "^3.14.0",
"level": "^5.0.1",
"libp2p": "^0.29.2",
"libp2p-bootstrap": "^0.12.1",
"libp2p-gossipsub": "^0.6.4",
"libp2p-kad-dht": "^0.20.1",
"libp2p-mplex": "^0.10.1",
"libp2p-noise": "^2.0.1",
"libp2p-webrtc-star": "^0.20.1",
"libp2p-websockets": "^0.14.0",
"multiaddr": "^8.1.1",
"node-fetch": "^2.6.1",
"peer-id": "^0.14.2",
"protons": "^2.0.0",
"sha256": "^0.2.0",
"stream-to-string": "^1.2.0",
"strongly-typed-events": "^1.6.22",
"truffle-contract": "^4.0.31",
"uint8arrays": "^1.1.0",
"web3": "^1.3.4"
}
}