-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.2 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
91
92
93
94
95
96
97
98
99
{
"name": "trueid",
"version": "1.0.0",
"description": "TrueID - Decentralized Biometric Identity System",
"private": true,
"workspaces": [
"backend",
"frontend",
"admin-portal",
"scripts"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"install:all": "npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" \"npm run dev:admin\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm start",
"dev:admin": "cd admin-portal && npm start",
"build": "npm run build:frontend && npm run build:admin",
"build:frontend": "cd frontend && npm run build",
"build:admin": "cd admin-portal && npm run build",
"start": "cd backend && npm start",
"setup": "cd backend && npm run setup",
"test": "npm run test:backend && npm run test:frontend && npm run test:admin",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"test:admin": "cd admin-portal && npm test",
"clean": "rimraf node_modules backend/node_modules frontend/node_modules admin-portal/node_modules scripts/node_modules",
"blockchain:deploy:fuji": "cd backend && npm run blockchain:deploy:fuji",
"blockchain:verify:fuji": "cd backend && npm run blockchain:verify:fuji",
"setup:avax-testnet": "cd backend && npm run setup:avax-testnet"
},
"dependencies": {
"@craco/craco": "^7.1.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@headlessui/react": "^2.2.3",
"@mui/icons-material": "^7.1.0",
"@mui/lab": "^7.0.0-beta.15",
"@mui/material": "^7.1.0",
"@tailwindcss/forms": "^0.5.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"argon2": "^0.43.0",
"axios": "^1.9.0",
"bcryptjs": "^3.0.2",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"ethers": "^6.14.3",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"form-data": "^4.0.5",
"framer-motion": "^12.11.4",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"lucide-react": "^0.510.0",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"pg": "^8.15.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^10.1.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.5.3",
"react-scripts": "5.0.1",
"tough-cookie": "^5.1.2",
"uuid": "^11.1.0",
"web-vitals": "^4.2.4",
"web3": "^4.16.0",
"ws": "^8.18.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-ethers": "^1.0.0",
"@nomiclabs/hardhat-waffle": "^1.0.0",
"@truffle/hdwallet-provider": "^2.0.16",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"ganache": "^6.4.5",
"hardhat": "^3.1.10",
"jest": "^29.7.0",
"nodemon": "^3.1.11",
"postcss": "^8.5.3",
"rimraf": "^6.0.1",
"solc": "^0.8.29",
"supertest": "^7.1.0",
"tailwindcss": "^4.1.11"
}
}