-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.06 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.06 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
{
"name": "tips-ecosystem",
"version": "1.0.0",
"description": "Tips Ecosystem L1 - Decentralized Tipping Blockchain with Next.js frontend",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:coverage": "npx hardhat coverage",
"node": "npx hardhat node",
"deploy:localhost": "npx hardhat run scripts/deploy-direct.js --network localhost",
"deploy:testnet": "npx hardhat run scripts/deploy-direct.js --network sepolia",
"deploy:mainnet": "npx hardhat run scripts/deploy-direct.js --network mainnet",
"verify": "npx hardhat run scripts/verify-contracts.js --network",
"clean": "npx hardhat clean",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"lint-staged": "lint-staged",
"ci:build": "npm run compile && npm run test",
"deploy:explorer": "node scripts/deploy-explorer.js",
"deploy:dashboard": "node scripts/deploy-dashboard.js"
},
"keywords": [
"blockchain",
"ethereum",
"tips",
"cryptocurrency",
"defi",
"nextjs",
"frontend"
],
"author": "TheArchitect",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^4.9.6",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"next": "^14.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.35",
"hardhat": "^2.22.6",
"hardhat-contract-sizer": "^2.0.0",
"hardhat-gas-reporter": "^1.0.10",
"husky": "^9.0.0",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"solhint": "^3.6.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
],
"*.ts": [
"eslint --fix",
"prettier --write"
],
"*.sol": [
"prettier --write",
"solhint --fix"
]
}
}