-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 4.05 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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@arx-research/ers-scripts",
"version": "2.1.1",
"description": "Scripts for deploying and interacting with the ERS protocol from the command line",
"main": "index.js",
"engines" : {
"node" : ">=20.5.0 <23.0.0"
},
"scripts": {
"addManufacturer": "npx hardhat addManufacturer",
"addManufacturer:localhost": "npx hardhat addManufacturer --network localhost",
"addManufacturer:sepolia": "npx hardhat addManufacturer --network sepolia",
"addManufacturerEnrollment": "npx hardhat addManufacturerEnrollment",
"addManufacturerEnrollment:localhost": "npx hardhat addManufacturerEnrollment --network localhost",
"addManufacturerEnrollment:sepolia": "npx hardhat addManufacturerEnrollment --network sepolia",
"build": "./scripts/build.sh",
"chain": "npx hardhat node --no-deploy",
"clean-artifacts": "rm -rf contracts artifacts external cache",
"clean-task-outputs": "rm -rf task_outputs",
"copy-contracts": "./scripts/copy_contracts.sh",
"deploy:localhost:clean": "rm -rf deployments/localhost && yarn deploy:localhost",
"deploy:localhost": "npx hardhat deploy --network localhost --no-compile",
"deploy:base": "npx hardhat deploy --network base --no-compile && npx hardhat export --network base --export ./deployments/outputs/baseContracts.ts",
"deploy:sepolia": "npx hardhat deploy --network sepolia --no-compile && npx hardhat export --network sepolia --export ./deployments/outputs/sepoliaContracts.ts",
"etherscan:base": "yarn hardhat --network base etherscan-verify --license MIT --solc-input",
"etherscan:sepolia": "yarn hardhat --network sepolia etherscan-verify --license MIT --solc-input",
"transferToken": "npx hardhat transferToken",
"transferToken:localhost": "npx hardhat transferToken --network localhost",
"transferToken:sepolia": "npx hardhat transferToken --network sepolia",
"createDeveloperRegistrar": "npx hardhat createDeveloperRegistrar",
"createDeveloperRegistrar:localhost": "npx hardhat createDeveloperRegistrar --network localhost",
"createProject": "npx hardhat createProject",
"createProject:localhost": "npx hardhat createProject --network localhost",
"createProject:sepolia": "npx hardhat createProject --network sepolia",
"addProjectToRegistrar": "npx hardhat addProjectToRegistrar",
"createService": "npx hardhat createService",
"createService:localhost": "npx hardhat createService --network localhost",
"createService:sepolia": "npx hardhat createService --network sepolia",
"scanChips": "npx hardhat scanChips",
"test": "npx hardhat test",
"test:deploy": "yarn test:fast ./test/deploys.spec.ts",
"test:tasks": "yarn test:fast ./test/tasks/*.spec.ts",
"test:fast": "NO_COMPILE=true TS_NODE_TRANSPILE_ONLY=1 yarn test --no-compile",
"transpile": "tsc"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^7.0.0",
"@types/chai": "^4.3.7",
"@types/mocha": "^10.0.1",
"@types/node": ">=12.0.0",
"chai": "^4.2.0",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "^2.16.1",
"mock-stdin": "^1.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-node": ">=8.0.0",
"typechain": "^8.2.0",
"typescript": ">=4.5.0"
},
"dependencies": {
"@arx-research/ers-contracts": "^2.1.2",
"@arx-research/libhalo": "1.2.33",
"@filebase/sdk": "^1.0.5",
"@nomicfoundation/hardhat-viem": "^1.0.1",
"@supabase/supabase-js": "^2.45.0",
"@types/cli-progress": "^3.11.5",
"@types/tar": "^6.1.9",
"axios": "^1.4.0",
"cli-progress": "^3.12.0",
"csv-parser": "^3.0.0",
"csv-writer": "^1.6.0",
"dotenv": "^16.3.1",
"hardhat-deploy": "^0.11.34",
"mongoose": "^7.6.3",
"qrcode": "^1.5.3",
"tar": "^6.2.0",
"terminal-image": "1.2.1",
"websocket": "^1.0.35"
}
}