-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.96 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.96 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
{
"name": "zeroauth",
"version": "2.0.0",
"description": "Enterprise SSO Authentication API with Blockchain-Anchored Decentralized Identity — Zero biometric data stored. Ever.",
"main": "dist/server.js",
"workspaces": [
"verifier"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx watch src/server.ts",
"verifier:dev": "npm --workspace @zeroauth/verifier run dev",
"verifier:build": "npm --workspace @zeroauth/verifier run build",
"verifier:start": "npm --workspace @zeroauth/verifier run start",
"docs:site:start": "npm --prefix website run start -- --port 3001 --host 0.0.0.0",
"docs:site:build": "npm --prefix website run build",
"docs:site:serve": "npm --prefix website run serve -- --port 3001 --host 0.0.0.0",
"test": "jest --forceExit --detectOpenHandles",
"test:coverage": "jest --coverage --forceExit --detectOpenHandles",
"lint": "eslint src tests scripts",
"circuits:setup": "bash scripts/setup-zkp.sh",
"contracts:compile": "hardhat compile",
"contracts:deploy": "hardhat run scripts/deploy-contracts.ts --network baseSepolia",
"docker:dev": "docker compose --profile dev up -d --build",
"docker:test": "docker compose --profile test up --build",
"docker:prod": "docker compose --profile prod up -d --build",
"docker:down": "docker compose --profile dev --profile prod down",
"build:all": "npm run build && cd dashboard && npm run build && cd .. && npm run docs:site:build",
"wallet:rotate": "tsx scripts/transfer-ownership.ts",
"setup": "npm install && cd dashboard && npm install && cd ../website && npm install && cd .. && npm run build:all"
},
"dependencies": {
"circomlibjs": "^0.1.7",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"ethers": "^6.16.0",
"express": "^4.18.2",
"express-rate-limit": "^8.5.2",
"express-session": "^1.17.3",
"helmet": "^8.1.0",
"ioredis": "^5.10.1",
"jsonwebtoken": "^9.0.2",
"nodemailer": "^8.0.7",
"pg": "^8.20.0",
"poseidon-lite": "^0.3.0",
"snarkjs": "^0.7.6",
"uuid": "^9.0.0",
"winston": "^3.11.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.6.1",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.19.0",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^25.8.0",
"@types/nodemailer": "^8.0.0",
"@types/pg": "^8.20.0",
"@types/snarkjs": "^0.7.9",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"circomlib": "^2.0.5",
"eslint": "^9.39.4",
"hardhat": "^2.28.6",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.4.9",
"tsx": "^4.22.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.59.3"
}
}