-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.71 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
{
"name": "silentpay",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "SilentPay - Privacy-first Payroll Platform on Midnight",
"author": "Team SilentPay",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"compile": "compact compile contracts/payroll.compact contracts/managed/payroll",
"midnight:setup": "npx tsx src/midnight/setup.ts",
"midnight:deploy": "npx tsx src/midnight/deploy.ts",
"midnight:cli": "npx tsx src/midnight/cli.ts",
"midnight:check-balance": "npx tsx src/midnight/check-balance.ts",
"midnight:network": "npx tsx src/midnight/network.ts",
"proof-server:start": "docker compose up -d --wait",
"proof-server:stop": "docker compose down",
"clean": "rm -rf contracts/managed .midnight-state.json .midnight-wallet-state",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "tsx scripts/e2e-check.ts",
"db:generate": "npx prisma generate",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev",
"db:seed": "npx tsx prisma/seed.ts",
"db:studio": "npx prisma studio",
"postinstall": "npx prisma generate"
},
"dependencies": {
"@midnight-ntwrk/compact-runtime": "0.16.0",
"@midnight-ntwrk/midnight-js-contracts": "4.1.1",
"@midnight-ntwrk/midnight-js-http-client-proof-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-indexer-public-data-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-level-private-state-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-network-id": "4.1.1",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "4.1.1",
"@midnight-ntwrk/midnight-js-protocol": "4.1.1",
"@midnight-ntwrk/midnight-js-types": "4.1.1",
"@midnight-ntwrk/midnight-js-utils": "4.1.1",
"@midnight-ntwrk/wallet-sdk": "1.2.0",
"@prisma/client": "^6.11.0",
"framer-motion": "^12.43.0",
"lucide-react": "^0.511.0",
"next": "16.2.12",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-hook-form": "^7.56.0",
"rxjs": "^7.8.2",
"ws": "^8.21.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@jest/globals": "^30.4.1",
"@tailwindcss/postcss": "^4",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/ws": "^8.18.1",
"eslint": "^9",
"eslint-config-next": "16.2.12",
"jest": "^30.4.2",
"prisma": "^6.11.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.12",
"tsx": "^4.23.1",
"typescript": "^5"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"midnight",
"blockchain",
"zero-knowledge",
"privacy",
"payroll"
]
}