forked from canton-network/wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.79 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
{
"name": "@canton-network/example-ping",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"e2e": "nx playwright:e2e --ui",
"e2e2": "nx playwright:e2e",
"mock:signing-providers": "node tests/mock-signing-providers-server.ts all",
"mock:signing-providers:blockdaemon": "node tests/mock-signing-providers-server.ts blockdaemon",
"mock:signing-providers:dfns": "node tests/mock-signing-providers-server.ts dfns",
"mock:signing-providers:fireblocks": "node tests/mock-signing-providers-server.ts fireblocks",
"preview": "vite preview"
},
"dependencies": {
"@canton-network/core-types": "workspace:^",
"@canton-network/dapp-sdk": "workspace:^",
"@canton-network/wallet-sdk": "workspace:^",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@canton-network/core-eslint-config": "workspace:^",
"@canton-network/core-tx-visualizer": "workspace:^",
"@canton-network/core-wallet-test-utils": "workspace:^",
"@canton-network/core-wallet-ui-components": "workspace:^",
"@playwright/test": "^1.61.1",
"@types/node": "^25.9.4",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"dotenv": "^17.4.2",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"nx": "^22.7.6",
"typescript": "~5.9.3",
"vite": "^7.3.6"
},
"nx": {
"targets": {
"playwright:e2e": {
"dependsOn": [
"^build"
]
}
}
}
}