-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.33 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
{
"name": "donor-crowd-funding",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"*/.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"compact": "turbo run compact",
"contract": "turbo run start --filter=contract"
},
"private": true,
"dependencies": {
"@midnight-ntwrk/compact-runtime": "0.14.0",
"@midnight-ntwrk/ledger": "^4.0.0",
"@midnight-ntwrk/midnight-js-contracts": "3.0.0",
"@midnight-ntwrk/midnight-js-http-client-proof-provider": "3.0.0",
"@midnight-ntwrk/midnight-js-indexer-public-data-provider": "3.0.0",
"@midnight-ntwrk/midnight-js-level-private-state-provider": "3.0.0",
"@midnight-ntwrk/midnight-js-network-id": "3.0.0",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "3.0.0",
"@midnight-ntwrk/midnight-js-types": "3.0.0",
"@midnight-ntwrk/wallet-sdk-address-format": "3.0.0",
"@midnight-ntwrk/wallet-sdk-dust-wallet": "1.0.0",
"@midnight-ntwrk/wallet-sdk-facade": "1.0.0",
"@midnight-ntwrk/wallet-sdk-hd": "3.0.0",
"@midnight-ntwrk/wallet-sdk-shielded": "1.0.0",
"@midnight-ntwrk/wallet-sdk-unshielded-wallet": "1.0.0",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.20",
"nite-api": "^0.0.8",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"rxjs": "^7.8.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/node": "^22.15.21",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-promise": "^6.1.1",
"fast-check": "^3.15.0",
"jest": "^29.7.0",
"jest-fast-check": "^2.0.0",
"jest-gh-md-reporter": "^0.0.2",
"jest-html-reporters": "^3.1.4",
"jest-junit": "^16.0.0",
"prettier": "^3.0.3",
"testcontainers": "^10.27.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"turbo": "^1.10.16",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.9.2",
"workspaces": [
"packages/ui",
"packages/cli",
"packages/contract"
]
}