-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
75 lines (75 loc) · 2.43 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
{
"private": true,
"type": "module",
"name": "@saberhq/saber-common",
"description": "Common libraries across Saber projects.",
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.nix": "nixpkgs-fmt",
"*.{ts,tsx,mts,cts}": "eslint --cache --fix",
"*.{md,js,jsx,json,yml,yaml,css,md}": "prettier --write"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@coral-xyz/anchor": "^0.29.0",
"@jest/types": "^29.6.3",
"@rushstack/eslint-patch": "^1.10.2",
"@saberhq/eslint-config": "^3.3.1",
"@saberhq/eslint-config-react": "^3.3.1",
"@saberhq/tsconfig": "^3.3.1",
"@saberhq/use-solana": "workspace:*",
"@size-limit/file": "^11.1.2",
"@size-limit/webpack": "^11.1.2",
"@size-limit/webpack-why": "^11.1.2",
"@solana/web3.js": "^1.91.1",
"@types/babel__core": "^7.20.5",
"@types/babel__preset-env": "^7.9.6",
"@types/bn.js": "^5.1.5",
"@types/eslint": "^8.56.9",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.77",
"@types/source-map-support": "^0.5.10",
"@types/w3c-web-usb": "^1.0.10",
"@typescript-eslint/utils": "^7.6.0",
"@yarnpkg/doctor": "^4.0.1",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-runtime": "^29.7.0",
"jsbi": "^4.3.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"react": "^18.2.0",
"size-limit": "^11.1.2",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"turbo": "^2.0.7",
"typedoc": "^0.25.13",
"typescript": "^5.4.5"
},
"scripts": {
"build": "turbo build",
"clean": "turbo clean",
"publish:all": "yarn workspaces foreach --all --exclude @saberhq/saber-common -ptv npm publish",
"typecheck": "tsc --build",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:ci": "eslint . --max-warnings=0",
"prepare": "husky install",
"size": "size-limit",
"analyze": "size-limit --why",
"docs:generate": "typedoc --excludePrivate --includeVersion --out docs/ --entryPointStrategy packages --includes packages/ $(find ./packages -mindepth 1 -maxdepth 1 | grep -v browserslist)",
"test": "jest **/*.test.ts",
"doctor:packages": "yarn doctor packages/"
},
"version": "3.0.0",
"packageManager": "[email protected]"
}