forked from luislucena16/midnight-quick-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.49 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.49 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
{
"name": "midnight-quick-starter",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"build": "turbo run build",
"build:all": "cd packages/contract && npx turbo run build && cd ../api && yarn build && cd ../cli && npx turbo run build && cd ../ui && npx turbo run build",
"clean": "turbo run clean",
"clean:cache": "rm -rf .turbo && rm -rf node_modules/.cache"
},
"private": true,
"resolutions": {
"@midnight-ntwrk/compact-runtime/@midnight-ntwrk/onchain-runtime": "^0.3.0",
"@midnight-ntwrk/zswap": "4.0.0"
},
"dependencies": {
"@midnight-ntwrk/compact-runtime": "^0.9.0",
"@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-network-id": "2.0.2",
"@midnight-ntwrk/midnight-js-node-zk-config-provider": "2.0.2",
"@midnight-ntwrk/midnight-js-types": "2.0.2",
"@midnight-ntwrk/midnight-js-utils": "2.0.2",
"@midnight-ntwrk/wallet": "5.0.0",
"@midnight-ntwrk/wallet-api": "^5.0.0",
"@midnight-ntwrk/wallet-sdk-address-format": "2.0.0",
"fp-ts": "^2.16.1",
"io-ts": "^2.2.20",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"rxjs": "^7.8.1",
"ws": "^8.18.1"
},
"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": "2.5.5",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.9.2",
"workspaces": [
"compact",
"packages/api",
"packages/ui",
"packages/cli",
"packages/contract"
]
}