forked from OpenZeppelin/ethernaut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.14 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.14 KB
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
{
"private": true,
"workspaces": {
"packages": [
"contracts",
"client",
"deps/hljs"
]
},
"dependencies": {
"highlight.js": "^10.7.2",
"react-loader-spinner": "^5.3.4"
},
"resolutions": {
"**/highlight.js": "10.7.2-local"
},
"scripts": {
"test": "cd contracts && hardhat test",
"compile:contracts": "cd contracts && hardhat clean && hardhat compile",
"deploy:contracts": "yarn compile:contracts && node --experimental-json-modules client/scripts/deploy_contracts.mjs",
"upgrade:proxy": "yarn compile:contracts && node --experimental-json-modules client/scripts/upgrade_proxy.mjs",
"network": "cd contracts && hardhat node",
"build:ethernaut": "yarn compile:contracts && yarn --cwd client build",
"start:ethernaut": "cd client && yarn start",
"test:contracts": "cd contracts && hardhat test",
"leaderboard:oldCrawler": "node client/leaderboard/scripts/crawlers/crawlHistoricalData/index.cjs",
"leaderboard:newCrawler": "node client/leaderboard/scripts/crawlers/crawlNewData/index.cjs",
"leaderboard:triggerNextCrawl": "node client/leaderboard/scripts/actuate/index.cjs"
}
}