-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.5 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
{
"name": "plasma",
"version": "1.0.0",
"description": "Enter project description",
"scripts": {
"postinstall": "tsc compile.ts",
"compile": "node compile.js",
"build": "npm run compile",
"mocha": "mocha -t 120000 -r ts-node/register test/index.ts",
"pretest": "./clone-kami.sh",
"test": "npm run compile && npm run mocha",
"test:debug": "DEBUG=true npm run test",
"deploy": "ts-node deploy.ts",
"style-check": "prettier --check test/ contracts/",
"style-fix": "prettier --write test/ contracts/",
"typechain:ETH": "typechain --target ethers-v5 --outDir build/typechain/ETH 'build/artifacts/ETH/**/*.json'",
"typechain:ESN": "typechain --target ethers-v5 --outDir build/typechain/ESN 'build/artifacts/ESN/**/*.json'",
"typechain": "npm run typechain:ETH && npm run typechain:ESN && prettier --write build/typechain",
"flatten": "solidity-flattener"
},
"dependencies": {
"@openzeppelin/contracts": "3.2.2-solc-0.7",
"solc": "^0.7.4"
},
"devDependencies": {
"@typechain/ethers-v5": "^2.0.0",
"@types/fs-extra": "^9.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@zemse/solidity-flattener": "^1.5.1",
"eth-proof": "^2.1.4",
"ethers": "^5.0.19",
"fs-extra": "8.1.0",
"ganache-core": "^2.13.1",
"mocha": "6.1.4",
"prettier": "^2.1.2",
"prettier-plugin-solidity": "^1.0.0-alpha.60",
"prompt-sync": "^4.2.0",
"ts-node": "^8.10.1",
"typechain": "^3.0.0",
"typescript": "^3.9.5"
}
}