forked from solana-labs/solana-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.72 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
{
"name": "solana-web3.js-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run --concurrency=95.84% build",
"compile": "turbo run --concurrency=95.84% compile:js compile:typedefs",
"lint": "turbo run --concurrency=95.84% test:lint",
"style:fix": "turbo run --concurrency=95.84% style:fix && pnpm prettier --log-level warn --ignore-unknown --write '{.,!packages}/*'",
"test": "turbo run --concurrency=95.84% test:unit:browser test:unit:node",
"test:live-with-test-validator": "turbo run --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.7",
"@solana/build-scripts": "workspace:*",
"@solana/eslint-config-solana": "^3.0.4",
"@solana/prettier-config-solana": "0.0.5",
"@solana/test-config": "workspace:*",
"@solana/test-matchers": "workspace:*",
"@solana/tsconfig": "workspace:*",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.17.0",
"agadoo": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-turbo": "^2.0.9",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"jest": "^30.0.0-alpha.5",
"jest-environment-jsdom": "^30.0.0-alpha.5",
"jest-runner-eslint": "^2.2.0",
"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.2.1",
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"engineStrict": true,
"engines": {
"node": ">=14.0.0",
"npm": "please-use-pnpm",
"pnpm": "^9",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@9.1.0",
"pnpm": {
"overrides": {
"@wallet-standard/base": "pre",
"conventional-changelog-conventionalcommits": ">= 8.0.0",
"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"
}