forked from subquery/subql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.2 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
{
"name": "subql-mono",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@types/node": "^12.19.15",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-header": "^3.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"husky": "^4.3.8",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^4.1.3",
"vuepress": "^1.8.0"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint packages --ext .ts",
"test": "jest --coverage",
"test:all": "jest --coverage --testRegex='.*\\.(spec|test)\\.ts$' --forceExit --detectOpenHandles",
"test:docker": "docker-compose -f test/docker-compose.yaml up --remove-orphans --abort-on-container-exit --build test"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'packages/**/src/**/*'"
}
}
}