forked from solana-labs/solana-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.45 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"compile": "turbo run compile:js compile:typedefs",
"lint": "turbo run test:lint",
"style:fix": "turbo style:fix && pnpm prettier --log-level warn --ignore-unknown --write '{.,!packages}/*'",
"test": "turbo run test:unit:browser test:unit:node",
"test:live-with-test-validator": "turbo run 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.1",
"@solana/build-scripts": "workspace:*",
"@solana/eslint-config-solana": "^3.0.3",
"@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": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"agadoo": "^3.0.0",
"eslint": "^8.57.0",
"eslint-config-turbo": "^1.13.3",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"jest": "^30.0.0-alpha.3",
"jest-environment-jsdom": "^30.0.0-alpha.3",
"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.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"engineStrict": true,
"engines": {
"node": ">=14.0.0",
"npm": "please-use-pnpm",
"pnpm": "^9",
"yarn": "please-use-pnpm"
},
"packageManager": "pnpm@9.1.0",
"pnpm": {
"overrides": {
"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"
}