forked from saber-hq/saber-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.92 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
{
"private": true,
"name": "@saberhq/saber-common",
"description": "Common libraries across Saber projects.",
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{md,js,json,yml,yaml,css,md}": "prettier --write"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@project-serum/anchor": "^0.19.1-beta.1",
"@rushstack/eslint-patch": "^1.1.0",
"@saberhq/eslint-config": "*",
"@saberhq/eslint-config-react": "*",
"@size-limit/file": "^7.0.5",
"@size-limit/webpack": "^7.0.5",
"@solana/web3.js": "^1.31.0",
"@types/babel__core": "^7.1.17",
"@types/babel__preset-env": "^7.9.2",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.17",
"@types/react": "^17.0.38",
"@types/source-map-support": "^0.5.4",
"@yarnpkg/doctor": "^3.1.0",
"bn.js": "^5.2.0",
"bs58": "^4.0.1",
"buffer": "^6.0.3",
"eslint": "^8.5.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.3",
"husky": "^7.0.4",
"jest": "^27.4.5",
"jsbi": "^4.1.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"size-limit": "^7.0.5",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"scripts": {
"build": "lerna run build",
"typecheck": "tsc",
"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/ packages/**/src/index.{ts,tsx}",
"test": "jest **/*.test.ts"
},
"version": "0.0.0",
"packageManager": "yarn@3.1.1"
}