-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.54 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.54 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
{
"name": "one-universal-identity",
"version": "1.0.0",
"description": "One Universal Identity (OUI) - Complete blockchain identity system",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"test:jest": "jest",
"test:all": "npm run test:jest && npm run test",
"deploy": "npx hardhat run scripts/deploy.ts",
"node": "npx hardhat node",
"gas-report": "npx hardhat run scripts/gas-reporter.js",
"verify": "npx hardhat run scripts/verify.ts",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@nomicfoundation/hardhat-ethers": "^3.1.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.1.1",
"@openzeppelin/contracts": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@react-native-async-storage/async-storage": "^2.2.0",
"@testing-library/jest-dom": "^6.8.0",
"@typechain/ethers-v6": "^0.5.0",
"@typechain/hardhat": "^9.0.0",
"@types/chai": "^4.3.9",
"@types/cors": "^2.8.19",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.24",
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.4",
"@types/morgan": "^1.9.10",
"@types/node": "^20.19.23",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/sinon": "^10.0.15",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"chai": "^4.3.9",
"eslint": "^9.36.0",
"hardhat": "^2.26.3",
"hardhat-gas-reporter": "^1.0.9",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"react-native-crypto": "^2.2.1",
"react-native-randombytes": "^3.6.2",
"sinon": "^15.1.0",
"solidity-coverage": "^0.8.5",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"axios": "^1.6.0",
"circomlib": "^2.0.5",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"ethers": "^6.8.1",
"express": "^4.18.2",
"ffjavascript": "^0.2.60",
"helmet": "^7.1.0",
"layerzero": "^1.0.0",
"morgan": "^1.10.0",
"simple-statistics": "^7.8.2",
"snarkjs": "^0.7.3"
},
"author": "Tech Parivartan",
"license": "Apache-2.0"
}