forked from Spock-Analytics/spock-adapters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "spock-adapters",
"version": "0.1.0",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.1",
"@typechain/ethers-v5": "^10.1.1",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.7.4"
},
"main": "./dist/index.js",
"packageManager": "yarn@3.2.2",
"scripts": {
"build": "tsc --build \"tsconfig.prod.json\"",
"dev": "yarn build && tsc --project './tsconfig.json' & NODE_ENV=development node dist",
"clean": "shx rm -rf ./dist",
"commit": "git cz",
"test": "jest",
"lint": "yarn lint:ts && yarn prettier:check && yarn typecheck",
"lint:ts": "eslint --config \"./.eslintrc.yml\" --ignore-path \"./.eslintignore\" --ext .js,.ts .",
"postinstall": "husky install",
"prettier": "prettier --config \"./.prettierrc.yml\" --ignore-path \"./.prettierignore\" --write \"**/*.{js,json,md,ts,yml}\"",
"prettier:check": "prettier --check --config \"./.prettierrc.yml\" --ignore-path \"./.prettierignore\" \"**/*.{js,json,md,ts,yml}\"",
"typecheck": "tsc --noEmit",
"generate": "chmod u+x ./src/scripts/generate.sh && ./src/scripts/generate.sh",
"prepare": "chmod u+x ./src/scripts/prepare.sh && ./src/scripts/prepare.sh"
},
"types": "./dist/index.d.ts",
"dependencies": {
"@ethersproject/experimental": "^5.7.0",
"@spockanalytics/base": "^2.1.0",
"ethers": "^5.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}