-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 KB
/
package.json
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
{
"name": "croplink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn server",
"dev:next": "next dev",
"server": "nodemon --config nodemon.json api/index.ts",
"build": "next build",
"start": "NODE_ENV=production node -r ts-node/register api/index.ts",
"start:next": "next start",
"lint": "next lint"
},
"dependencies": {
"@chainlink/contracts": "^0.8.0",
"@chakra-ui/react": "^2.6.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@sanity/client": "^6.1.1",
"@tanstack/react-query": "^4.29.7",
"@types/config": "^3.3.0",
"@types/express": "^4.17.17",
"@types/node": "20.2.1",
"@types/react-dom": "18.2.4",
"aws-sdk": "^2.1386.0",
"axios": "^1.4.0",
"chart.js": "^4.3.0",
"concurrently": "^8.0.1",
"dotenv": "^16.0.3",
"eslint": "8.41.0",
"eslint-config-next": "13.4.3",
"ethers": "^6.9.0",
"express": "^4.18.2",
"framer-motion": "^10.12.12",
"iron-session": "^6.3.1",
"joi": "^17.9.2",
"next": "13.4.3",
"nodemon": "^2.0.22",
"react": "18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"siwe": "^2.1.4",
"ts-node": "^10.9.1",
"usehooks-ts": "^2.9.1",
"viem": "^0.3.31",
"wagmi": "^1.0.5"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.6",
"@types/react": "^18.2.6",
"hardhat": "^2.13.0",
"lodash.isequal": "^4.5.0",
"typescript": "^5.2.2"
}
}