-
Notifications
You must be signed in to change notification settings - Fork 681
/
package.json
30 lines (30 loc) · 1.25 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
{
"private": true,
"workspaces": {
"packages": [
"client",
"deps/hljs"
]
},
"dependencies": {
"highlight.js": "^10.7.2",
"react-loader-spinner": "^5.3.4"
},
"resolutions": {
"**/highlight.js": "10.7.2-local"
},
"scripts": {
"test:contracts": "cd contracts && forge test",
"compile:contracts": "cd contracts && forge build",
"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",
"supersede:level": "yarn compile:contracts && node --experimental-json-modules client/scripts/supersede_level.mjs",
"network": "cd contracts && anvil --block-time 1 --auto-impersonate",
"build:ethernaut": "yarn compile:contracts && yarn --cwd client build",
"build:netlify": "yarn --cwd client build",
"start:ethernaut": "cd client && yarn start",
"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"
}
}