forked from saber-hq/saber-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.52 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
{
"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.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-typescript": "^7.18.6",
"@jest/types": "^29.1.0",
"@project-serum/anchor": "^0.25.0",
"@rushstack/eslint-patch": "^1.2.0",
"@saberhq/eslint-config": "^2.1.0",
"@saberhq/eslint-config-react": "^2.1.0",
"@saberhq/tsconfig": "^2.1.0",
"@saberhq/use-solana": "workspace:*",
"@size-limit/file": "^8.1.0",
"@size-limit/webpack": "^8.1.0",
"@size-limit/webpack-why": "^8.1.0",
"@solana/web3.js": "^1.63.1",
"@types/babel__core": "^7.1.19",
"@types/babel__preset-env": "^7.9.2",
"@types/bn.js": "^5.1.1",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.23",
"@types/react": "^18.0.21",
"@types/source-map-support": "^0.5.6",
"@types/w3c-web-usb": "^1.0.6",
"@typescript-eslint/utils": "^5.38.1",
"@yarnpkg/doctor": "^4.0.0-rc.22",
"bn.js": "^5.2.1",
"buffer": "^6.0.3",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"jest": "^29.1.1",
"jest-runtime": "^29.1.1",
"jsbi": "^4.3.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"react": "^18.2.0",
"size-limit": "^8.1.0",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.4"
},
"scripts": {
"build": "yarn workspaces foreach --exclude @saberhq/saber-common -ptv run build",
"clean": "yarn workspaces foreach --exclude @saberhq/saber-common -ptv run clean",
"publish:all": "yarn workspaces foreach --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": "1.14.11",
"packageManager": "[email protected]"
}