forked from daniel-ck89/cicd-test
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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": "chainapsis-suggest-chain",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node src/index.ts cosmos/axelar-dojo.json",
"cron": "ts-node src/schedule.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:test": "eslint \"src/**/*\" && prettier --check \"src/**/*\"",
"lint:fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\""
},
"pre-commit": [
"lint:test"
],
"keywords": [],
"author": "",
"license": "",
"dependencies": {
"@keplr-wallet/chain-validator": "^0.11.18-alpha.7",
"@keplr-wallet/common": "0.11.18-alpha.7",
"@keplr-wallet/cosmos": "0.11.18-alpha.7",
"@keplr-wallet/types": "0.11.18-alpha.7",
"axios": "^0.27.2",
"image-size": "^1.0.2",
"ws": "^8.11.0"
},
"devDependencies": {
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1"
}
}