forked from immutable/ts-immutable-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
103 lines (103 loc) · 3.7 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
{
"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",
"@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",
"release-it": "^16.1.3",
"syncpack": "^9.8.4",
"typedoc": "^0.24.8",
"wsrun": "^5.2.4"
},
"engines": {
"node": ">=20.11.0"
},
"homepage": "https://github.com/immutable/ts-immutable-sdk#readme",
"license": "Apache-2.0",
"lint-staged": {
"*": "yarn scan:secrets",
"*.{js,jsx,ts,tsx}": "eslint"
},
"packageManager": "[email protected]",
"private": true,
"repository": "immutable/ts-immutable-sdk.git",
"resolutions": {
"responselike": "^2.0.0"
},
"scripts": {
"build": "NODE_OPTIONS=--max-old-space-size=14366 wsrun -y 4 -p @imtbl/sdk -p @imtbl/checkout-widgets -e -r --serial build && yarn syncpack:format && yarn wsrun -p @imtbl/sdk -a -m copyBrowserBundles",
"build:onlysdk": "NODE_OPTIONS=--max-old-space-size=14366 wsrun -y 4 -p @imtbl/sdk --stages build && yarn syncpack:format",
"dev": "wsrun --parallel --exclude-missing dev",
"docs:build": "typedoc",
"docs:serve": "http-server ./docs --cors -p 8080 -c-1",
"lint": "wsrun --exclude-missing -e lint --no-error-on-unmatched-pattern",
"lint:ci": "./lint-ci.sh",
"postinstall": "husky install; ./.husky/install_gitleaks.sh",
"release": "release-it",
"scan:secrets": "./.husky/run_gitleaks.sh",
"syncpack:check": "yarn syncpack list-mismatches",
"syncpack:fix": "yarn syncpack fix-mismatches",
"syncpack:format": "yarn syncpack format",
"test": "wsrun --exclude-missing -e test",
"test:checkout:cypress": "wsrun -p @imtbl/checkout-widgets-lib --exclude-missing -e test:cypress",
"test:checkout:sdk:coverage": "wsrun -p @imtbl/checkout-sdk --exclude-missing -e test:coverage",
"test:samples": "cd samples/apps/ts-immutable-sample && yarn test && yarn test:e2e",
"test:vpn": "RUN_VPN_TESTS=1 wsrun --exclude-missing -e test",
"typecheck": "wsrun --exclude-missing typecheck"
},
"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/contracts",
"packages/internal/toolkit",
"packages/internal/cryptofiat",
"packages/internal/dex/sdk",
"packages/internal/dex/sdk-sample-app",
"packages/internal/bridge/sdk",
"packages/internal/factory/sdk",
"packages/internal/factory/factory-sample-app",
"packages/internal/generated-clients",
"packages/internal/guardian",
"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"
],
"nohoist": [
"samples/**",
"examples/**"
]
}
}