forked from ethereumjs/ultralight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.17 KB
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
{
"name": "ultralight",
"private": true,
"workspaces": [
"./packages/portalnetwork",
"./packages/cli",
"./packages/browser-client",
"./packages/proxy"
],
"engines": {
"npm": ">=7",
"node": ">=18"
},
"scripts": {
"preinstall": "npm run checkNpmVersion",
"checkNpmVersion": "bash ./scripts/check-npm-version.sh",
"postinstall": "npm run tapeHotFix && 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": "npm run lint -w=cli -w=portalnetwork -w=proxy",
"lint:fix": "npm run lint:fix -w=cli -w=portalnetwork -w=proxy",
"clean": "bash ./scripts/clean-root.sh",
"tapeHotFix": "sed -i -e 's/js/ts/g' node_modules/tape/bin/import-or-require.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.33.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-implicit-dependencies": "^1.1.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1"
}
}