-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gear-bridges",
"private": true,
"author": "Gear Technologies",
"license": "GPL-3.0",
"repository": "git@github.com:gear-tech/gear-bridges.git",
"engines": {
"node": ">=20"
},
"bugs": {
"url": "https://github.com/gear-tech/gear-bridges/issues"
},
"homepage": "https://github.com/gear-tech/gear-bridges",
"packageManager": "yarn@4.9.2",
"version": "0.0.1",
"workspaces": [
"js/indexer",
"js/frontend",
"js/bridge-js",
"js/common"
],
"devDependencies": {
"@eslint/js": "^9.35.0",
"@swc/cli": "^0.7.8",
"@swc/core": "^1.13.5",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"eslint": "9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.2.0",
"eslint-plugin-vitest": "^0.5.4",
"lerna": "8.2.4",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"typescript": "5.9.2",
"typescript-eslint": "^8.43.0"
},
"scripts": {
"build:frontend": "lerna run build --scope gear-bridge-common --scope @gear-js/bridge --scope frontend --verbose",
"build:indexer": "lerna run build --scope gear-bridge-common --scope indexer --verbose",
"build:bridge-js": "lerna run build --scope @gear-js/bridge --verbose",
"build:common": "lerna run build --scope gear-bridge-common --verbose",
"build": "lerna run build",
"clean": "lerna clean --yes",
"lint:bridge-js": "eslint js/bridge-js",
"lint:bridge-js:fix": "eslint js/bridge-js --fix",
"lint:indexer": "eslint js/indexer",
"lint:indexer:fix": "eslint js/indexer --fix",
"fmt": "prettier js/bridge-js/**/*.{ts,js,json} js/indexer/**/*.{ts,js,json} -w",
"test": "lerna run test --scope @gear-js/bridge --verbose"
}
}