Skip to content

Commit 298558a

Browse files
authored
Update package.json
1 parent d27a489 commit 298558a

1 file changed

Lines changed: 17 additions & 8 deletions

File tree

package.json

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
{
22
"name": "tips-ecosystem",
33
"version": "1.0.0",
4-
"description": "Tips Ecosystem L1 - Decentralized Tipping Blockchain",
4+
"description": "Tips Ecosystem L1 - Decentralized Tipping Blockchain with Next.js frontend",
55
"main": "index.js",
66
"scripts": {
7+
"dev": "next dev",
8+
"build": "next build",
9+
"start": "next start",
710
"compile": "npx hardhat compile",
811
"test": "npx hardhat test",
912
"test:coverage": "npx hardhat coverage",
@@ -26,10 +29,20 @@
2629
"ethereum",
2730
"tips",
2831
"cryptocurrency",
29-
"defi"
32+
"defi",
33+
"nextjs",
34+
"frontend"
3035
],
3136
"author": "TheArchitect",
3237
"license": "MIT",
38+
"dependencies": {
39+
"next": "^14.2.0",
40+
"react": "^18.2.0",
41+
"react-dom": "^18.2.0",
42+
"@openzeppelin/contracts": "^4.9.6",
43+
"dotenv": "^16.4.5",
44+
"ethers": "^6.11.1"
45+
},
3346
"devDependencies": {
3447
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
3548
"hardhat": "^2.22.6",
@@ -41,13 +54,9 @@
4154
"hardhat-gas-reporter": "^1.0.10",
4255
"hardhat-contract-sizer": "^2.0.0"
4356
},
44-
"dependencies": {
45-
"@openzeppelin/contracts": "^4.9.6",
46-
"dotenv": "^16.4.5",
47-
"ethers": "^6.11.1"
48-
},
4957
"lint-staged": {
5058
"*.js": ["eslint --fix", "prettier --write"],
51-
"*.sol": ["prettier --write"]
59+
"*.ts": ["eslint --fix", "prettier --write"],
60+
"*.sol": ["prettier --write", "solhint --fix"]
5261
}
5362
}

0 commit comments

Comments
 (0)