forked from subquery/subql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
56
57
58
59
60
61
{
"name": "subql-mono",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@actions/core": "^1.10.1",
"@babel/preset-env": "^7.16.11",
"@geut/chan": "^3.2.9",
"@octokit/request": "^9.1.3",
"@types/node": "^18.19.42",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "5",
"@typescript-eslint/parser": "5",
"babel-jest": "^29.7.0",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"husky": "^7.0.4",
"jest": "^29.5.0",
"lint-staged": "^15.2.7",
"node-fetch": "2.7.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"regenerator-runtime": "^0.13.11",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.5.4"
},
"resolutions": {
"@polkadot/api": "12.2.3",
"@polkadot/util": "13.0.2",
"node-fetch": "2.6.7"
},
"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 --testRegex='.*\\.(spec|test)\\.ts$' --forceExit --ci -w=2 --clearMocks",
"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@3.2.4"
}