-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.17 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
{
"devDependencies": {
"@peculiar/webcrypto": "1.0.21",
"@types/jasmine": "3.4.4",
"@types/node": "13.7.2",
"@types/node-fetch": "2.5.4",
"@types/react": "16.9.22",
"@types/react-dom": "16.9.5",
"@zoltu/file-copier": "2.2.1",
"@zoltu/rlp-encoder": "2.0.0",
"@zoltu/solidity-typescript-generator": "3.1.0",
"@zoltu/typescript-transformer-append-js-extension": "1.0.1",
"jasmine": "3.5.0",
"node-fetch": "2.6.1",
"solc": "0.6.3",
"ts-node": "8.6.2",
"ttypescript": "1.5.10",
"typescript": "3.8.2"
},
"scripts": {
"build-contracts": "ts-node --project scripts/tsconfig.json scripts/compile-contracts.ts",
"vendor": "ts-node --project scripts/tsconfig.json scripts/vendor.ts",
"build-dapp": "ttsc --project dapp/tsconfig.json",
"watch-dapp": "ttsc --project dapp/tsconfig.json --watch",
"test": "ts-node --project test/tsconfig.json test/index.ts",
"serve-dapp": "npx http-server dapp"
},
"dependencies": {
"@zoltu/ethereum-abi-encoder": "4.0.0",
"@zoltu/ethereum-crypto": "2.1.1",
"@zoltu/ethereum-fetch-json-rpc": "12.2.2",
"@zoltu/ethereum-types": "8.4.2",
"es-module-shims": "0.4.6",
"react": "16.12.0",
"react-dom": "16.12.0"
}
}