-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.31 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
{
"name": "darcher",
"version": "1.0.0",
"description": "DArcher - A Testing Framework for Decentralized Applications",
"repository": {
"url": "https://github.com/darcher-framework/darcher"
},
"author": "DArcher Framework",
"license": "ISC",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"packages/darcher-examples/*"
],
"nohoist": [
"packages/darcher-examples/*/*"
]
},
"scripts": {
"build:config": "yarn workspace @darcher/config build",
"build:proto": "yarn workspace @darcher/rpc build",
"build:dbmonitor-browser": "yarn workspace @darcher/dbmonitor-browser build",
"build:misc": "yarn workspace @darcher/misc build",
"build:helpers": "yarn workspace @darcher/helpers build",
"build:helpers-browser": "yarn workspace @darcher/helpers-browser build",
"build:analyzer": "yarn workspace @darcher/analyzer build",
"build": "npm-run-all build:*",
"test:analyzer": "yarn workspace @darcher/analyzer test",
"test:dbmonitor": "yarn workspace @darcher/dbmonitor test",
"test:helpers": "yarn workspace @darcher/helpers test",
"test": "npm-run-all test:*",
"analyze:AgroChain": "ts-node scripts/AgroChain.analyze.ts",
"analyze:Augur": "ts-node scripts/augur.analyze.ts",
"analyze:DemocracyEarth": "ts-node scripts/democracy-earth.analyze.ts",
"analyze:ETH-Hot-Wallet": "ts-node scripts/eth-hot-wallet.analyze.ts",
"analyze:Ethereum-Voting_Dapp": "ts-node scripts/ethereum_voting_dapp.analyze.ts",
"analyze:Giveth": "ts-node scripts/giveth.analyze.ts",
"analyze:Heiswap": "ts-node scripts/heiswap.analyze.ts",
"analyze:MetaMask": "ts-node scripts/metamask.analyze.ts",
"analyze:Multisender": "ts-node scripts/multisender.analyze.ts",
"analyze:PublicVotes": "ts-node scripts/publicvotes.analyze.ts",
"analyze:TodoList-Dapp": "ts-node scripts/todolist-dapp.analyze.ts"
},
"dependencies": {
"get-port": "^5.1.1",
"keythereum": "^1.0.4",
"lerna": "^3.22.1",
"lodash": "^4.17.20",
"npm-run-all": "^4.1.5",
"shelljs": "^0.8.4",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"optionalDependencies": {
"ttab": "^0.7.0"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.167",
"@types/shelljs": "^0.8.8",
"chai": "^4.2.0"
}
}