-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "chasqui-app",
"version": "1.0.0",
"description": "Plataforma de comunicación descentralizada con sistema de tareas privadas usando eERC20 en Avalanche",
"private": true,
"type": "module",
"keywords": [
"avalanche",
"eerc20",
"encrypted-erc20",
"privacy",
"smart-contracts",
"vue",
"decentralized-chat",
"escrow",
"web3",
"avalanche-network"
],
"author": "Wiracocha Labs",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"hardhat:node": "hardhat node",
"hardhat:compile": "hardhat compile",
"hardhat:test": "hardhat test web3/tests",
"hardhat:clean": "hardhat clean",
"hardhat:deploy-local": "hardhat run web3/scripts/deploy-authorization.ts --network localhost",
"hardhat:deploy-local-full": "hardhat run web3/scripts/deploy-local.ts --network localhost",
"hardhat:deploy-and-update": "yarn hardhat:compile && yarn hardhat:deploy-local-full",
"update-contract": "node update-contract-addresses.js",
"deploy:fuji": "hardhat run web3/scripts/deploy-local.ts --network fuji",
"deploy:mainnet": "hardhat run web3/scripts/deploy-local.ts --network avalanche",
"verify:fuji": "hardhat verify --network fuji",
"start:local": "npm run hardhat:node",
"dev:full": "npm run hardhat:deploy-and-update && npm run dev",
"test:contracts": "npm run hardhat:test",
"interact:local": "hardhat console --network localhost"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.12",
"ethers": "^6.14.0",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^4.5.0",
"vue": "^3.4.0",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-ignition": "^0.15.13",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.14",
"@nomicfoundation/hardhat-network-helpers": "^1.1.0",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^2.1.0",
"@nomicfoundation/ignition-core": "^0.15.13",
"@tailwindcss/postcss": "^4.1.12",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^5.2.2",
"@types/minimatch": "^6.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^24.2.1",
"@vitejs/plugin-vue": "^6.0.2",
"autoprefixer": "^10.4.21",
"chai": "^4.2.0",
"dotenv": "^17.2.1",
"eslint": "^9.32.0",
"globals": "^16.3.0",
"hardhat": "^2.26.2",
"hardhat-gas-reporter": "^2.3.0",
"minimatch": "^10.0.3",
"postcss": "^8.5.6",
"solidity-coverage": "^0.8.1",
"tailwindcss": "^4.1.12",
"ts-node": "^10.9.2",
"typechain": "^8.3.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.0"
}
}