-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.75 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
{
"name": "poseidon-zk-contracts",
"packageManager": "yarn@3.3.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"compile": "yarn workspaces foreach run compile",
"test": "cd packages/contracts && yarn test && cd ../proof && yarn test",
"publish": "npm run pub2npmjs --workspaces --if-present",
"doc": "cd packages/contracts && yarn doc",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"lint:check": "npm run lint:check --workspaces --if-present",
"prettier:fix": "npm run prettier:fix --workspaces --if-present",
"prettier:check": "npm run prettier:check --workspaces --if-present"
},
"installConfig": {
"hoistingLimits": "dependencies"
},
"resolutions": {
"ethereumjs-abi": "https://registry.npmjs.org/ethereumjs-abi/-/ethereumjs-abi-0.6.8.tgz"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.1",
"@typechain/hardhat": "^6.1.4",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.9",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"prettier": "^2.8.8"
}
}