forked from Sixela33/ZK-Leaks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.12 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
{
"name": "@meshsdk/starter-template",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"cli",
"contract",
"frontend"
],
"scripts": {
"compact": "turbo run compact",
"dev": "turbo run dev:frontend",
"build": "turbo run build",
"lint": "turbo run lint",
"dev:proof-server": "cd cli && npm run run-proof-server-testnet",
"dev:undeployed-instances": "cd cli && npm run prepare-standalone",
"dev:frontend": "cd frontend && npm run dev",
"start-app-testnet": "concurrently \"npm run dev:proof-server\" \"npm run dev:frontend\"",
"start-app-undeployed": "npm run dev:frontend"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.2",
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/node": "^22.15.29",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"concurrently": "^9.2.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"testcontainers": "^11.0.0",
"ts-node": "^10.9.2",
"turbo": "^2.4.4",
"typescript": "^5.8.3",
"vitest": "^3.2.0"
},
"dependencies": {
"@meshsdk/midnight-react": "^0.0.6",
"@midnight-ntwrk/compact-runtime": "0.8.1",
"@midnight-ntwrk/dapp-connector-api": "3.0.0",
"@midnight-ntwrk/ledger": "4.0.0",
"@midnight-ntwrk/midnight-js-contracts": "2.0.2",
"@midnight-ntwrk/midnight-js-fetch-zk-config-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-http-client-proof-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-indexer-public-data-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-level-private-state-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-types": "2.0.2",
"@midnight-ntwrk/wallet": "5.0.0",
"@midnight-ntwrk/wallet-api": "5.0.0",
"@midnight-ntwrk/zswap": "4.0.0",
"pino": "9.7.0",
"pino-pretty": "13.0.0",
"vite-plugin-node-polyfills": "^0.24.0",
"ws": "8.18.2"
}
}