-
Notifications
You must be signed in to change notification settings - Fork 875
/
package.json
77 lines (77 loc) · 3.03 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
76
77
{
"name": "solana-web3.js-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} build",
"compile": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} compile:js compile:typedefs",
"compile:ghpages": "typedoc",
"lint": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:lint",
"style:fix": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} style:fix && pnpm prettier --log-level warn --ignore-unknown --write '{.,!packages}/*'",
"test": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:unit:browser test:unit:node",
"test:live-with-test-validator": "turbo run --concurrency=${TURBO_CONCURRENCY:-95.84%} test:live-with-test-validator",
"test:live-with-test-validator:setup": "./scripts/setup-test-validator.sh"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@eslint/js": "^9.14.0",
"@eslint/json": "^0.6.0",
"@solana/build-scripts": "workspace:*",
"@solana/eslint-config-solana": "^4.0.0",
"@solana/prettier-config-solana": "0.0.5",
"@solana/test-config": "workspace:*",
"@solana/test-matchers": "workspace:*",
"@solana/tsconfig": "workspace:*",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"agadoo": "^3.0.0",
"bundlemon": "^3.1.0",
"eslint": "^9.14.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"jest": "^30.0.0-alpha.6",
"jest-environment-jsdom": "^30.0.0-alpha.6",
"jest-runner-eslint": "^2.2.1",
"jest-runner-prettier": "^1.0.0",
"jest-watch-master": "^1.0.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^2.2.2",
"prettier": "^3.3",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"turbo": "^2.2.3",
"typedoc": "^0.26.11",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20.18.0",
"npm": "please-use-pnpm",
"pnpm": "^9",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@9.1.0",
"pnpm": {
"overrides": {
"agadoo>rollup": "^4",
"conventional-changelog-conventionalcommits": ">= 8.0.0",
"dset@<3.1.4": "^3.1.4",
"jsdom": "^22",
"mock-socket": "^9.3.1",
"shelljs": ">=0.8.5"
},
"patchedDependencies": {
"jest-runner-prettier@1.0.0": "patches/jest-runner-prettier@1.0.0.patch"
}
},
"prettier": "@solana/prettier-config-solana"
}