-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.17 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
{
"name": "ts-immutable-sdk",
"description": "Immutable Unified TypeScript SDK",
"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",
"@jest/test-sequencer": "^29.7.0",
"@nx/js": "^19.7.2",
"@swc-node/register": "^1.10.9",
"@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",
"buffer": "^5.5.0||^6.0.0",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-plugins-node-modules-polyfill": "^1.6.7",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-react-refresh": "latest",
"events": "^3.3.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"node-gyp": "^9.3.1",
"nx": "^19.7.2",
"process": "^0.11.10",
"string_decoder": "^1.3.0",
"syncpack": "^13.0.0",
"tsup": "8.3.0",
"typedoc": "^0.26.5",
"typescript": "^5.6.2",
"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": "pnpm@9.12.0",
"private": true,
"repository": "immutable/ts-immutable-sdk.git",
"resolutions": {
"@openzeppelin/contracts@3.4.1-solc-0.7-2": "3.4.2",
"@openzeppelin/contracts@3.4.2-solc-0.7": "3.4.2",
"elliptic": "^6.6.1",
"responselike": "^2.0.0"
},
"scripts": {
"build": "nx run-many -p @imtbl/sdk,@imtbl/checkout-widgets -t build",
"build:examples": "pnpm --recursive --filter '@examples/**' build",
"build:onlysdk": "NODE_OPTIONS=--max-old-space-size=14366 nx run-many --target=build --projects=@imtbl/sdk && pnpm syncpack:format",
"dev": "FORCE_COLOR=1 pnpm --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run transpile && pnpm --parallel --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run transpile --watch",
"dev:test": "FORCE_COLOR=1 pnpm --stream --parallel --filter @imtbl/sdk... --filter @imtbl/checkout-widgets... run test:watch",
"docs:build": "typedoc",
"docs:serve": "http-server ./docs --cors -p 8080 -c-1",
"lint": "nx affected -t lint",
"lint:examples": "pnpm --recursive --filter '@examples/**' lint",
"nx": "nx",
"pack-npm-packages": "pnpm -r pack:root",
"parse:examples": "node examples/_scripts/sample-app-parser.mjs",
"postinstall": "husky install",
"prepare:sdk": "./prepare-deps.sh sdk",
"prepare:examples": "./prepare-deps.sh examples",
"prepare:tests": "./prepare-deps.sh tests",
"syncpack:check": "pnpm syncpack list-mismatches",
"syncpack:fix": "pnpm syncpack fix-mismatches",
"syncpack:format": "pnpm syncpack format",
"test": "nx affected -t test",
"test:examples": "pnpm --recursive --sequential --filter '@examples/**' test",
"test:vpn": "RUN_VPN_TESTS=1 wsrun --exclude-missing -e test",
"typecheck": "nx affected -t typecheck"
}
}