-
Notifications
You must be signed in to change notification settings - Fork 388
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
55
56
57
58
59
{
"name": "subql-mono",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@actions/core": "^1.10.1",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.0",
"@geut/chan": "^3.2.9",
"@octokit/request": "^8.4.1",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-headers": "^1.1.2",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"globals": "^15.15.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lint-staged": "^16.2.6",
"prettier": "^3.3.3",
"pretty-quick": "^4.2.2",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
},
"resolutions": {
"@polkadot/api": "^16.4.7",
"@polkadot/util": "^13.5.6"
},
"scripts": {
"build": "yarn workspaces foreach -tA run build",
"lint": "eslint packages --ext .ts",
"test": "TZ=utc jest --coverage",
"test:ci": "TZ=utc jest --testRegex='.*\\.(spec|test)\\.ts$'",
"test:all": "TZ=utc node --expose-gc ./node_modules/.bin/jest --logHeapUsage --forceExit --ci -w=2 --clearMocks packages/cli/src/controller/publish-controller.spec.ts",
"test:docker": "docker compose -f test/docker-compose.yaml up --remove-orphans --abort-on-container-exit --build test",
"postinstall": "husky install"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --write"
],
"packages/**/*.!(*ejs|ts)": [
"prettier --write"
]
},
"packageManager": "yarn@4.10.3"
}