-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 4.39 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "coinnect",
"version": "1.0.0",
"description": "Coinnect",
"author": "saimeunt",
"license": "ISC",
"scripts": {
"lint": "next lint",
"prettier": "prettier --write \"**/*.{ts,tsx,js,jsx,json,sol,prisma}\"",
"tsc": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:db:push": "source .env.local && export POSTGRES_URL && prisma db push",
"prisma:db:seed": "source .env.local && export POSTGRES_URL NEXT_PUBLIC_BASE_URL && prisma db seed",
"prisma:test": "ts-node prisma/test.ts",
"dev": "next dev",
"build": "pnpm hardhat:compile && next build",
"copy-abi": "ts-node scripts/copy-abi.ts && prettier --write \"app/lib/contracts/**/abi.ts\"",
"hardhat:node": "hardhat node",
"hardhat:compile": "hardhat compile && pnpm copy-abi",
"hardhat:deploy:localhost": "hardhat run scripts/deploy.ts --network localhost",
"hardhat:deploy:mumbai": "pnpm hardhat:test && NODE_ENV=production hardhat run scripts/deploy.ts --network mumbai",
"hardhat:test": "hardhat test",
"hardhat:coverage": "hardhat coverage",
"ngrok": "ngrok http --domain=amusing-blessed-duckling.ngrok-free.app 3000",
"declare-stable-coin-katana": "starkli declare cairo_contracts/target/dev/coinnect_stable_coin.contract_class.json --compiler-version 2.1.0 --rpc http://0.0.0.0:5050 --account ~/.starkli-wallets/katana/account.json --keystore ~/.starkli-wallets/katana/keystore.json",
"deploy-stable-coin-katana": "starkli deploy 0x010ad5a239c4a86dd7c771d6cfa7e2290184042e7b802583e0296edef3c4ad14 u256:1000 0x517ececd29116499f4a1b64b094da79ba08dfd54a3edaa316134c41f8160973 --rpc http://0.0.0.0:5050 --account ~/.starkli-wallets/katana/account.json --keystore ~/.starkli-wallets/katana/keystore.json",
"balance-stable-coin-katana": "starkli call 0x0295ce070269532c33f36796ed8f29330fa3e91d1bc18151d338fe742ce55b78 balance_of 0x517ececd29116499f4a1b64b094da79ba08dfd54a3edaa316134c41f8160973 --rpc http://0.0.0.0:5050"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-tailwindcss",
"prettier-plugin-prisma",
"prettier-plugin-solidity"
],
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 100,
"tabWidth": 2
}
}
]
},
"dependencies": {
"@headlessui/react": "2.0.0-alpha.4",
"@heroicons/react": "^2.1.1",
"@openzeppelin/contracts": "^5.0.1",
"@prisma/client": "^5.9.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tanstack/react-query": "^5.18.0",
"@web3modal/core": "^3.5.7",
"@web3modal/siwe": "^3.5.7",
"@web3modal/wagmi": "4.0.0-alpha.3",
"alchemy-sdk": "^3.1.2",
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"dotenv": "^16.4.1",
"ethers": "^6.10.0",
"iron-session": "^8.0.1",
"lodash": "^4.17.21",
"next": "^14.1.0",
"nft.storage": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"satori": "^0.10.13",
"siwe": "^2.1.4",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.1",
"usehooks-ts": "^2.12.1",
"viem": "^2.7.1",
"wagmi": "^2.5.5",
"zod": "^3.22.4"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.11",
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.16",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"autoprefixer": "^10.4.17",
"chai": "^4.4.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.10",
"postcss": "^8.4.33",
"prettier": "^3.2.4",
"prettier-plugin-prisma": "^5.0.0",
"prettier-plugin-solidity": "^1.3.1",
"prettier-plugin-tailwindcss": "^0.5.11",
"prisma": "^5.9.1",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
}
}