-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.66 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "bodhi.js-monorepo",
"repository": "[email protected]:AcalaNetwork/bodhi.js.git",
"author": "Acala Developers <[email protected]>",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"engines": {
"node": ">=v16"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "yarn workspaces foreach -pvit --include \"@acala-network/*\" run clean",
"build": "yarn workspaces foreach -pvit --include \"@acala-network/*\" run build",
"lint": "eslint . --ext .js,.ts --fix",
"test:all": "yarn workspaces foreach -vit run test",
"test": "vitest run",
"test:watch": "vitest",
"bump": "yarn workspaces foreach -vit --include '@acala-network/*' --exclude '@acala-network/evm-subql' version",
"postinstall": "husky install"
},
"devDependencies": {
"@swc/core": "^1.3.56",
"@swc/helpers": "^0.5.1",
"@types/eslint": "^8",
"@types/node": "^22.7.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vitest/coverage-istanbul": "^2.1.1",
"eslint": "^8.40.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nyc": "^17.1.0",
"pm2": "^5.4.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "~5.5.0",
"vite-tsconfig-paths": "^4.0.0",
"vitest": "^2.1.1"
},
"lint-staged": {
"*.{js,ts}": "yarn lint"
},
"exports": {
".": "./lib/index.js",
"./*": "./lib/*.js",
"./package.json": "./package.json"
}
}