-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.05 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
62
{
"name": "metadot-multisig",
"description": "multisig subquery for metadot",
"version": "0.0.3",
"author": {
"name": "Ahmed Ali",
"url": "https://github.com/ahmedali8"
},
"devDependencies": {
"@acala-network/type-definitions": "^4.1.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@polkadot/api": "^8.4.2",
"@subql/cli": "1.0.0",
"@subql/types": "1.0.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"commander": "^6.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.1",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"shx": "^0.3.4",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.4",
"yaml": "^2.1.0"
},
"files": [
"dist",
"schema.graphql",
"project.yaml"
],
"license": "MIT",
"main": "./dist/index.js",
"private": true,
"packageManager": "yarn@3.2.0",
"repository": "github:ahmedali8/metadot-multisig-subql",
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"codegen": "./node_modules/.bin/subql codegen",
"commit": "git-cz",
"lint": "./scripts/lint.sh",
"lint:fix": "eslint --fix --ext .js,.ts .",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.ts .",
"patchchain": "./scripts/patch.sh -n",
"postinstall": "husky install",
"prepack": "yarn clean && yarn build",
"start": "./scripts/start.sh",
"sudo:rm": "./scripts/sudo_rm.sh",
"prettier": "prettier --config ./.prettierrc.yaml --ignore-path ./.prettierignore --write \"./src/**/*.{js,json,md,ts,yaml,yml}\"",
"prettier:check": "prettier --check --config ./.prettierrc.yaml --ignore-path ./.prettierignore \"./src/**/*.{js,json,md,ts,yaml,yml}\"",
"typecheck": "tsc --noEmit"
}
}