-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "weavedb",
"version": "0.4.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@exodus/schemasafe": "^1.0.0-rc.7",
"@metamask/eth-sig-util": "^4.0.1",
"@peculiar/webcrypto": "^1.4.0",
"arlocal": "1.1.42",
"arweave": "1.11.4",
"asn1.js": "^5.4.1",
"base64-js": "^1.5.1",
"bn.js": "^5.2.1",
"dotenv": "^16.0.1",
"eth-crypto": "^2.3.0",
"ethereumjs-wallet": "^1.0.2",
"fpjson-lang": "^0.1.1",
"json-logic-js": "^2.0.2",
"jsrsasign": "^10.5.27",
"ramda": "^0.28.0",
"replace-in-file": "^6.3.5",
"secp256k1": "^4.0.3",
"stream-browserify": "^3.0.0",
"text-encoding": "^0.7.0",
"tweetnacl": "^1.0.3",
"warp-contracts": "1.1.14"
},
"engines": {
"node": "16"
},
"scripts": {
"deploy": "yarn build && node scripts/deployFromSourceTx.js mainnet UR6tFLrjEdiujqQBTGEnyNYB7YUv3IkIJvNIiCiLCic",
"deploy-testnet": "yarn build && node scripts/deployFromSourceTx.js testnet J9zQvTyjNvRSBPyvSyZf0zehIaNB4CUKOQXRX_18B6Q",
"test": "yarn build && mocha",
"build": "yarn clean && node build.js && npm run cp",
"clean": "rimraf ./dist",
"cp": "copyfiles -u 1 ./src/**/*.json dist",
"repl": "node scripts/runNode.js"
},
"devDependencies": {
"@dfinity/agent": "^0.13.2",
"@dfinity/candid": "^0.13.2",
"@dfinity/identity": "^0.13.2",
"@dfinity/principal": "^0.13.2",
"chai": "^4.3.6",
"copyfiles": "^2.4.1",
"esbuild": "^0.14.46",
"mocha": "^10.0.0"
}
}