-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (83 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (83 loc) · 3.22 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
86
87
88
89
90
{
"name": "toti-fi",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:api": "node dist/toti-fi/server/server.mjs",
"start:full": "npm run build:dev && npm run start:api",
"build": "ng build",
"build:dev": "ng build --configuration development",
"build:prod": "ng build --configuration production",
"build:watch": "ng build --watch --configuration development",
"postbuild": "npm run copy:bytecode",
"copy:bytecode": "node -e \"const fs=require('fs'),src='src/server/contract-bytecode.json',dest='dist/toti-fi/server/contract-bytecode.json';fs.existsSync(src)&&fs.existsSync('dist/toti-fi/server')?fs.copyFileSync(src,dest)||console.log('copied contract-bytecode.json to dist'):console.warn('skipped copy: missing src or dist dir')\"",
"dev": "npm run build:dev && npm run start:api",
"dev:ssr": "npm run build:dev && npm run start:api",
"dev:api": "npm run start:api",
"serve:ssr": "npm run start:api",
"serve:prerender": "ng run toti-fi:prerender",
"test": "ng test --watch=false",
"lint": "ng lint",
"contracts:compile": "npx hardhat compile --config hardhat.config.cjs",
"contracts:deploy": "npx hardhat run scripts/deploy-contracts.cjs --network hedera --config hardhat.config.cjs",
"contracts:build": "npm run contracts:compile && npm run contracts:deploy"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.0",
"@angular/cdk": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/material": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/platform-browser-dynamic": "^21.2.0",
"@angular/platform-server": "^21.2.0",
"@angular/router": "^21.2.0",
"@angular/ssr": "^21.2.0",
"@hashgraph/hedera-wallet-connect": "^2.0.7",
"@hashgraph/sdk": "^2.80.0",
"@walletconnect/modal": "^2.7.0",
"express": "^5.2.1",
"hashconnect": "^3.0.14",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.1.2",
"@nomicfoundation/hardhat-ethers": "^3.1.3",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.17",
"@nomicfoundation/hardhat-network-helpers": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^6.1.2",
"@nomicfoundation/hardhat-verify": "^2.1.3",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/express": "^5.0.6",
"@types/jasmine": "~6.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^25.3.2",
"chai": "^4.5.0",
"dotenv": "^17.3.1",
"ethers": "^6.16.0",
"fast-check": "^4.6.0",
"hardhat": "^2.28.6",
"hardhat-gas-reporter": "^2.3.0",
"jasmine-core": "~6.1.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.2.0",
"solidity-coverage": "^0.8.17",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "~5.9.3"
}
}