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
131 lines (131 loc) · 6.39 KB
/
Copy pathpackage.json
File metadata and controls
131 lines (131 loc) · 6.39 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "wallet-kernel",
"private": true,
"scripts": {
"start:all": "yarn pm2 start ecosystem.config.js --env development",
"start:canton": "tsx ./scripts/src/start-canton.ts",
"start:canton:tls": "tsx ./scripts/src/start-canton.ts --network=mainnet --tls=true",
"start:localnet": "tsx ./scripts/src/start-localnet.ts start",
"start:canton:console": ".canton/bin/canton --config canton/canton.conf --bootstrap canton/bootstrap.canton",
"stop:all": "yarn pm2 stop all",
"stop:localnet": "tsx ./scripts/src/start-localnet.ts stop",
"pull:localnet": "tsx ./scripts/src/start-localnet.ts pull",
"generate:dapp-remote": "yarn workspace @canton-network/core-rpc-generator build && yarn open-rpc-generator generate -c ./rpc-generator-config-dapp-remote.json",
"generate:dapp": "yarn workspace @canton-network/core-rpc-generator build && yarn open-rpc-generator generate -c ./rpc-generator-config-dapp.json",
"generate:user": "yarn workspace @canton-network/core-rpc-generator build && yarn open-rpc-generator generate -c ./rpc-generator-config-user.json",
"generate:signing": "yarn workspace @canton-network/core-rpc-generator build && yarn open-rpc-generator generate -c ./rpc-generator-config-signing.json",
"generate:grpc": "tsx ./scripts/src/generate-protobufs.ts",
"generate:tokenstandard": "tsx ./scripts/src/generate-token-standard.ts",
"generate:all": "yarn generate:dapp && yarn generate:dapp-remote && yarn generate:user && yarn generate:signing && yarn generate:tokenstandard && yarn run prettier . --write > /dev/null 2>&1",
"lint": "nx run-many -t lint --parallel",
"build:all": "nx run-many -t build --parallel",
"build:all:serial": "nx run-many -t build --parallel=1",
"clean:all": "nx run-many -t clean --parallel && yarn nx reset",
"test:all": "nx run-many -t test --parallel",
"test-coverage:all": "nx run-many -t test:coverage --parallel",
"postinstall": "husky && yarn generate:tokenstandard",
"docs:update-wg-config": "tsx ./scripts/src/docs-update-wg-config.ts",
"script:cleancoding": "tsx ./scripts/src/clean-coding.ts",
"script:install:dpm": "tsx --eval \"import { installDPM } from './scripts/src/install-dpm.ts'; installDPM()\"",
"script:generate:openapi": "tsx ./scripts/src/generate-openapi-clients.ts",
"script:generate:asyncapi": "tsx ./scripts/src/generate-asyncapi-clients.ts",
"script:generate:protobufs": "tsx ./scripts/src/generate-protobufs.ts",
"script:generate:featured-dars": "tsx ./scripts/src/generate-featured-dars.ts",
"script:generate:ledgerapi": "tsx ./scripts/src/generate-ledgerapi-types.ts",
"script:fetch:canton": "tsx ./scripts/src/fetch-canton.ts",
"script:fetch:splice": "tsx ./scripts/src/fetch-splice.ts",
"script:fetch:localnet": "tsx ./scripts/src/fetch-localnet.ts",
"script:openrpc:titles": "tsx ./scripts/src/schema-title-validation.ts",
"script:validate:package": "tsx ./scripts/src/package-and-verify-wallet-sdk.ts",
"script:test:examples": "yarn node --trace-uncaught --enable-source-maps --import tsx ./scripts/src/test-example-scripts.ts",
"script:test:examples-stress": "tsx ./scripts/src/test-examples-scripts-under-stress.ts",
"script:test:stress-scripts": "tsx ./scripts/src/test-stress-scripts.ts",
"script:release": "tsx ./scripts/src/release.ts",
"script:retag": "tsx ./scripts/src/retag.ts",
"script:flat-pack": "tsx ./scripts/src/flat-pack.ts",
"script:upgrade:splice": "tsx ./scripts/src/upgrade-splice.ts",
"playwright:install": "playwright install chromium firefox",
"playwright:install:with-deps": "playwright install chromium firefox --with-deps",
"full:rebuild": "NX_TUI=false && yarn clean:all && yarn generate:all && yarn install && yarn build:all --skip-nx-cache && NX_TUI=true",
"full:down": "yarn stop:localnet && yarn pm2 kill && yarn full:rebuild",
"full:up": "yarn start:localnet && yarn start:all"
},
"workspaces": [
"api-specs",
"core/**",
"docs/wallet-integration-guide/examples",
"examples/*",
"example-scripts",
"sdk/**",
"sdk-support/**",
"scripts",
"mock-oauth2",
"wallet-gateway/**"
],
"devDependencies": {
"@commitlint/config-conventional": "^20.4.2",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@nx/eslint": "22.5.4",
"@nx/eslint-plugin": "22.5.4",
"@nx/playwright": "22.5.4",
"@nx/storybook": "22.5.4",
"@nx/web": "22.5.4",
"@open-rpc/generator": "^2.1.1",
"@playwright/test": "^1.58.2",
"@protobuf-ts/plugin": "^2.11.1",
"@storybook/web-components-vite": "10.2.14",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.18",
"@swc/helpers": "~0.5.19",
"@types/node": "25.3.3",
"@typescript-eslint/parser": "^8.56.1",
"commitlint": "^20.4.2",
"eslint": "^10.0.2",
"eslint-plugin-headers": "^1.3.4",
"globals": "^17.4.0",
"grpc-tools": "^1.13.1",
"husky": "^9.1.7",
"jsonc-eslint-parser": "^3.1.0",
"lint-staged": "^16.3.1",
"lit": "^3.3.2",
"oauth2-mock-server": "^8.2.2",
"pino-pretty": "^13.1.3",
"playwright": "1.58.2",
"pm2": "^6.0.14",
"prettier": "^3.8.1",
"storybook": "10.2.14",
"ts-node": "10.9.2",
"ts-proto": "^2.11.4",
"tslib": "^2.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.2"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{ts,tsx,js,jsx,mjs,cjs}": "eslint --fix"
},
"packageManager": "yarn@4.9.4",
"dependencies": {
"@nx/js": "22.5.4",
"nx": "22.5.4"
},
"resolutions": {
"playwright": "1.58.2",
"jose": "^5.10.0",
"node-forge": "^1.3.2",
"tmp": "^0.2.4",
"tar-fs": "^2.1.4",
"glob": "^10.5.0",
"vite": "^7.2.4",
"uri-js": "npm:uri-js-replace@^1.0.1",
"seroval": "^1.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/canton-network/wallet-gateway.git"
}
}