-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
110 lines (110 loc) · 3.87 KB
/
package.json
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
{
"name": "ts-immutable-sdk",
"description": "Immutable Unified TypeScript SDK",
"version": "0.0.0",
"author": "Immutable",
"bugs": "https://github.com/immutable/ts-immutable-sdk/issues",
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@emotion/react": "^11.11.3",
"@release-it-plugins/workspaces": "^4.0.0",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.3.36",
"@types/chai": "^4.3.16",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"chai": "^5.1.1",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-react-refresh": "latest",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"node-gyp": "^9.3.1",
"nx": "19.3.2",
"release-it": "^16.1.3",
"syncpack": "^9.8.4",
"typedoc": "^0.26.5",
"wsrun": "^5.2.4"
},
"engines": {
"node": ">=20.11.0"
},
"homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
"license": "Apache-2.0",
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint"
},
"packageManager": "[email protected]",
"private": true,
"repository": "immutable/ts-immutable-sdk.git",
"resolutions": {
"responselike": "^2.0.0"
},
"scripts": {
"build": "nx run @imtbl/sdk:build",
"build:examples": "yarn workspaces foreach -Apt --include='@examples/**' run build",
"build:onlysdk": "NODE_OPTIONS=--max-old-space-size=14366 nx run-many --target=build --projects=@imtbl/sdk && yarn syncpack:format",
"dev": "./dev.sh",
"docs:build": "typedoc",
"docs:serve": "http-server ./docs --cors -p 8080 -c-1",
"lint": "nx affected -t lint",
"lint:examples": "yarn workspaces foreach -Apt --include='@examples/**' run lint",
"nx": "nx",
"postinstall": "husky install",
"prepare:examples": "yarn build:onlysdk && yarn yalc:sdk:publish && yarn workspaces foreach -Apt --include='@examples/**' exec yarn dlx yalc add @imtbl/sdk && yarn install --no-immutable",
"prepare:tests": "yarn build:onlysdk && yarn yalc:sdk:publish && yarn workspaces foreach -Apt --include='@tests/**' exec yarn dlx yalc add @imtbl/sdk && yarn install --no-immutable",
"release": "release-it",
"syncpack:check": "yarn syncpack list-mismatches",
"syncpack:fix": "yarn syncpack fix-mismatches",
"syncpack:format": "yarn syncpack format",
"test": "nx affected -t test",
"test:examples": "yarn workspaces foreach -At --include='@examples/**' run test",
"test:vpn": "RUN_VPN_TESTS=1 wsrun --exclude-missing -e test",
"typecheck": "nx affected -t typecheck",
"yalc:sdk:publish": "yarn workspace @imtbl/sdk exec yarn dlx yalc publish"
},
"workspaces": {
"packages": [
"sdk",
"packages/config",
"packages/x-client",
"packages/x-provider",
"packages/x-provider/src/sample-app",
"packages/passport/sdk",
"packages/passport/sdk-sample-app",
"packages/orderbook",
"packages/internal/metrics",
"packages/internal/toolkit",
"packages/internal/cryptofiat",
"packages/internal/dex/sdk",
"packages/internal/dex/sdk-sample-app",
"packages/internal/bridge/sdk",
"packages/internal/generated-clients",
"packages/internal/bridge/bridge-sample-app",
"packages/checkout/sdk",
"packages/checkout/sdk-sample-app",
"packages/checkout/widgets-sample-app",
"packages/checkout/widgets-lib",
"packages/blockchain-data/sdk",
"packages/game-bridge",
"packages/webhook/sdk",
"packages/minting-backend/sdk",
"tests/**",
"examples/passport/**",
"examples/orderbook/**",
"examples/checkout/**",
"examples/blockchain-data",
"examples/contracts/**",
"examples/x-to-zkevm-migration-app/**"
],
"nohoist": [
"examples/**",
"tests/**"
]
}
}