-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
32 lines (32 loc) · 1.12 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
{
"name": "ultralight",
"private": true,
"workspaces": ["./", "./packages/portalnetwork", "./packages/cli", "./packages/era"],
"engines": {
"npm": "^10",
"node": "^20"
},
"scripts": {
"biome": "npx @biomejs/biome check --write",
"postinstall": "npm run build --workspaces --if-present",
"start-proxy": "npm run start -w=proxy -- --nat=localhost",
"start-browser-client": "npm run start-testnet -w=browser-client",
"start-cli": "npm run dev -w=cli",
"lint": "eslint --format codeframe --config ./config/eslint.cjs . --ext .js,.ts",
"lint:fix": "eslint --fix --config ./config/eslint.cjs . --ext .js,.ts",
"clean": "bash ./scripts/clean-root.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-config-typestrict": "^1.0.5",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-implicit-dependencies": "^1.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-node": "^11.1.0",
"node-gyp": "^10.1.0",
"tsx": "^4.19.2"
}
}