-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"name": "estatechain",
"version": "1.0.0",
"description": "Next-Gen Real Estate Platform powered by Ethereum blockchain",
"private": true,
"workspaces": [
"blockchain",
"frontend",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=frontend",
"build": "npm run build --workspace=frontend",
"start": "npm run start --workspace=frontend",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,sol}\"",
"blockchain:compile": "npm run compile --workspace=blockchain",
"blockchain:deploy": "npm run deploy --workspace=blockchain",
"blockchain:test": "npm run test --workspace=blockchain",
"blockchain:verify": "npm run verify --workspace=blockchain",
"docs:generate": "npm run docs:generate --workspaces"
},
"dependencies": {
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@openzeppelin/contracts": "^5.0.0",
"ethers": "^6.7.0",
"framer-motion": "^10.12.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.9.0",
"react-query": "^3.39.3",
"wagmi": "^1.3.9",
"web3": "^4.1.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"dotenv": "^16.3.1",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.5",
"eslint-config-prettier": "^8.8.0",
"hardhat": "^2.17.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,sol}": [
"prettier --write",
"eslint --fix"
]
}
}