-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.43 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
{
"name": "oilchain",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"hardhat:start": "hardhat node",
"hardhat:compile": "hardhat compile",
"hardhat:deploy": "hardhat ignition deploy ./ignition/modules/OilChain.ts --network localhost",
"db:migrate": "npx @better-auth/cli migrate --config ./server/utils/auth.ts -y",
"db:seed-user": "tsx ./scripts/seed-user.ts"
},
"dependencies": {
"@nuxt/image": "1.8.1",
"@nuxt/ui": "3.0.0-alpha.10",
"@vueuse/integrations": "^12.4.0",
"@vueuse/router": "^12.4.0",
"better-auth": "^1.1.10",
"better-sqlite3": "11.7.2",
"ethers": "^6.13.4",
"nuxt": "^3.14.1592",
"qrcode": "^1.5.4",
"vue": "latest",
"vue-qrcode-reader": "^5.6.0",
"vue-router": "latest",
"zod": "^3.24.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-ignition": "^0.15.9",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/better-sqlite3": "^7.6.12",
"@vueuse/nuxt": "^12.4.0",
"dotenv": "^16.4.7",
"hardhat": "^2.22.17",
"tailwindcss": "4.0.0-beta.8",
"tsx": "^4.19.2",
"typechain": "^8.3.2"
}
}