forked from anza-xyz/octane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1012 Bytes
/
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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"dev": "lerna run --stream dev",
"start": "lerna run --stream start",
"build": "lerna run build",
"test": "lerna run test",
"test:live": "lerna run test:live",
"test:live-with-test-validator": "lerna run test:live-with-test-validator",
"lint": "lerna run --stream --no-bail lint",
"lint:fix": "lerna run --stream --no-bail lint:fix",
"cli": "lerna run --stream cli --scope @solana/octane-server --no-prefix -- --"
},
"devDependencies": {
"lerna": "^5.4.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"ts-node": "^10.4.0",
"typescript": "^4.7.4"
},
"workspaces": [
"packages/*"
]
}