forked from solana-labs/solana-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.16 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"compile": "turbo run compile:js compile:typedefs",
"lint": "turbo run test:lint",
"publish-packages": "turbo run --force=true build && turbo run --continue publish-packages",
"style:fix": "turbo run style:fix",
"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": {
"@commitlint/config-conventional": "^18.4.4",
"@solana/eslint-config-solana": "^1.0.2",
"@solana/prettier-config-solana": "^0.0.4",
"commitlint": "^17.6.7",
"eslint-config-turbo": "^1.10.13",
"turbo": "^1.11.1"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"pnpm": {
"overrides": {
"jsdom": "^22",
"mock-socket": "^9.3.0",
"shelljs": ">=0.8.5"
}
},
"prettier": "@solana/prettier-config-solana"
}