-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.84 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.84 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
{
"name": "orderly-js-sdk",
"private": true,
"scripts": {
"dev": "pnpm --filter @orderly.network/storybook dev",
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 turbo run build",
"storybook": "pnpm --filter @orderly.network/storybook storybook",
"storybook:tradingPage": "pnpm --filter @orderly.network/storybook storybook:tradingPage",
"build-storybook": "pnpm --filter @orderly.network/storybook build-storybook",
"dev:watch": "turbo run dev --concurrency=21",
"docs": "typedoc",
"version:add": "pnpm build && changeset add",
"version:g": "ts-node ./scripts/version.ts",
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm build",
"prepare": "husky",
"test": "turbo run test",
"test:scripts": "node --test scripts/*.test.js",
"release": "ts-node ./scripts/release.ts",
"release:patch": "cross-env RELEASE_VERSION_TYPE=patch ts-node ./scripts/release.ts",
"release:minor": "cross-env RELEASE_VERSION_TYPE=minor ts-node ./scripts/release.ts",
"release:major": "cross-env RELEASE_VERSION_TYPE=major ts-node ./scripts/release.ts",
"update:tsconfigPaths": "ts-node ./scripts/tsconfigPaths.ts",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "eslint --fix",
"lint:fix-error": "eslint --fix --fix-type problem",
"lint:error": "eslint --quiet",
"lint:inspect": "npx @eslint/config-inspector",
"trigger:pipeline": "node ./scripts/triggerPipeline.js",
"rebuild:better-sqlite3": "pnpm rebuild better-sqlite3 --pending -r"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@changesets/config": "^3.0.5",
"@changesets/pre": "^2.0.2",
"@changesets/should-skip-package": "^0.1.1",
"@changesets/types": "^6.0.0",
"@changesets/write": "^0.3.2",
"@manypkg/get-packages": "^2.2.2",
"@orderly.network/eslint-config": "0.0.9",
"@orderly.network/prettier-config": "0.2.7",
"@turbo/gen": "^2.9.14",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.12.0",
"cross-env": "^7.0.3",
"eslint": "^9.39.4",
"fs-extra": "^11.2.0",
"husky": "^9.1.7",
"jsonc-parser": "^3.3.1",
"lint-staged": "^15.5.1",
"prettier": "^3.8.1",
"tailwindcss": "^3.4.19",
"ts-node": "^10.9.2",
"tsconfig": "workspace:*",
"turbo": "^2.9.16",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.6.3",
"zx": "^8.8.5"
},
"engines": {
"node": ">=20.19.0",
"pnpm": ">=10.0.0"
},
"pnpm": {
"overrides": {
"ws@>=8.0.0 <8.21.0": "8.21.2",
"viem>ws": "8.21.2"
},
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"packageManager": "pnpm@10.26.2",
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,md}": [
"eslint --fix --config eslint.config.fix.mjs",
"prettier --write"
]
}
}