-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "azle-chain-fusion-starter",
"version": "0.2.0",
"license": "MIT",
"author": "Bundly",
"engines": {
"node": ">=20"
},
"packageManager": "^[email protected]",
"workspaces": [
"canisters/*",
"packages/*",
"networks/*"
],
"keywords": [
"azle",
"dapps",
"eth",
"ethereum",
"express",
"icp",
"internet computer",
"evm",
"foundry",
"rest",
"rest api",
"solidity",
"typescript"
],
"scripts": {
"ic:start": "sh ./scripts/ic/start.sh",
"ic:stop": "sh ./scripts/ic/stop.sh",
"ic:clean": "npx azle clean && rm -rf .dfx deps",
"foundry:start": "sh ./scripts/foundry/start.sh",
"foundry:stop": "sh ./scripts/foundry/stop.sh",
"foundry:deploy": "sh ./scripts/foundry/deploy.sh",
"foundry:job:create": "sh ./scripts/foundry/job.sh create --contract-address=$npm_config_contract_address",
"foundry:job:result": "sh ./scripts/foundry/job.sh getResult --job-id=$npm_config_job_id --contract-address=$npm_config_contract_address",
"foundry:clean": "rm -rf cache broadcast out",
"stop": "npm run ic:stop && npm run foundry:stop",
"preclean": "npm run stop",
"clean": "turbo run clean && npm run ic:clean && npm run foundry:clean && rm -rf .turbo node_modules"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"prettier": "^3.3.2",
"turbo": "^2.0.5"
}
}