-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.23 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
{
"name": "@as2ng/interchange",
"version": "0.0.19",
"description": "A minimal approach for interchange-transaction support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build-test": "npm run clean && npm run build && npm run runtest",
"build-execute": "npm run build && npm run execute",
"build-just": "waffle waffle.json",
"build": "waffle waffle.json && npm run build-types",
"build-types": "typechain --target ethers --outDir ./src/typedContracts ./build/**/*.json && cp ./build/* ./src/typedContracts",
"build-ts": "tsc -p tsconfig.json",
"publish-contracts": "cp -r ./src/gnosisTypedContracts/* ./dist/gnosisTypedContracts && cp -r ./src/typedContracts/*.d.ts ./dist/typedContracts && cp ./build/* ./dist/typedContracts && cp -r ./src/contracts ./dist/contracts",
"deploy": "ts-node src/deployment/deployScript.ts",
"generateSeed": "ts-node example/generateSeed.ts",
"proxy-echo-example": "ts-node example/proxyaccount/echo.ts",
"gnosis-echo-example": "ts-node example/gnosis/echo.ts",
"runtest": "NODE_ENV=test mocha --require ts-node/register --extension 'test.ts' './test/**/*.test.ts' --exit",
"test": "npm run build && npm run runtest -- --timeout='30000'",
"clean": "rm -rf ./dist && rm -rf ./build"
},
"devDependencies": {
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^14.0.1",
"bn.js": "^5.1.1",
"chai": "^4.2.0",
"ethereum-doppelganger": "0.0.7",
"ethereum-waffle": "2.3.0-istanbul.0",
"mocha": "^7.0.0",
"ts-mockito": "^2.5.0",
"ts-node": "^8.10.2",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.4",
"typescript": "^3.9.7"
},
"dependencies": {
"@openzeppelin/contracts": "3.0.0-beta.0",
"contractshark-test-utils": "^0.1.36",
"contractshark-test-lib": "^0.1.39",
"dotenv": "^8.2.0",
"ethers": "^5.0.24",
"ethers-multicall": "^0.1.4",
"flat-cache": "^3.0.4",
"isomorphic-fetch": "^3.0.0",
"micro": "^9.3.4",
"micro-cors": "^0.1.1",
"micro-dev": "^3.0.0",
"micro-query": "^0.3.0",
"micro-ratelimit": "^0.4.0"
}
}