-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 3.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 3.42 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
{
"name": "@dappykit/contracts",
"version": "1.0.1",
"description": "DappyKit smart contracts",
"scripts": {
"all": "npm run lint:check && npm run test",
"test": "hardhat test",
"lint:check": "eslint \"test/**/*.ts\" \"scripts/**/*.ts\" && prettier --check \"test/**/*.ts\" \"scripts/**/*.ts\"",
"deploy-filesystem": "npx hardhat ignition deploy ignition/modules/deploy-filesystem.ts --network $NETWORK --strategy create2",
"deploy-social-connection": "npx hardhat ignition deploy ignition/modules/deploy-social-connections.ts --network $NETWORK --strategy create2",
"deploy-user-verification": "npx hardhat ignition deploy ignition/modules/deploy-user-verification.ts --network $NETWORK",
"deploy-all": "npm run deploy-filesystem && npm run deploy-social-connection && npm run deploy-user-verification",
"deploy-all-localhost": "NETWORK=localhost npm run deploy-all",
"deploy-all-testnet-op": "NETWORK=testnet npm run deploy-all",
"deploy-create2-testnet-op": "export DEPLOYER_GATEWAY_URL_MAINNET=https://sepolia.optimism.io NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"deploy-create2-testnet-base": "export DEPLOYER_GATEWAY_URL_MAINNET=https://sepolia.base.org NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"deploy-create2-mainnet-base": "export DEPLOYER_GATEWAY_URL_MAINNET=https://mainnet.base.org NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"xxx-deploy-create2-testnet-cyber": "export DEPLOYER_GATEWAY_URL_MAINNET=https://rpc.testnet.cyber.co NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"xxx-deploy-create2-mainnet-cyber": "export DEPLOYER_GATEWAY_URL_MAINNET=https://rpc.cyber.co NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"deploy-create2-testnet-mode": "export DEPLOYER_GATEWAY_URL_MAINNET=https://sepolia.mode.network NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"deploy-create2-mainnet-mode": "export DEPLOYER_GATEWAY_URL_MAINNET=https://mainnet.mode.network NETWORK=mainnet && npm run deploy-filesystem && npm run deploy-social-connection",
"deploy-all-testnet-base": "DEPLOYER_GATEWAY_URL=https://sepolia.base.org NETWORK=testnet npm run deploy-all",
"deploy-all-mainnet": "NETWORK=mainnet npm run deploy-all",
"set-managers-op-mainnet": "npx hardhat run --network mainnet scripts/set-managers.ts"
},
"keywords": [
"dappykit",
"social connections",
"filesystem",
"verification",
"contracts",
"ethereum",
"hardhat",
"openzeppelin",
"upgrades",
"solidity"
],
"author": "DappyKit",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/hardhat-upgrades": "^3.4.0",
"@types/chai": "^4.3.20",
"@types/expect": "^24.3.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.4",
"hardhat": "^2.22.16",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}