-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
{
"name": "bot-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prebuild": "npm run clean && npm run lint:fix && echo \"building...\"",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"build": "tsc",
"clean": "rimraf out",
"start": "npm run build && node out/index.js",
"test": "mocha -r ts-node/register src/tests/**/*.spec.ts",
"test:coverage": "nyc npm run test"
},
"author": "White Whale",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.4",
"rimraf": "4.1.2",
"ts-node": "^10.9.1",
"typescript": "=4.9.5"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"parallel": true,
"include": [
"src/**/!(*.spec.*).[tj]s?(x)"
],
"exclude": [
"src/tests/**/*.*"
],
"reporter": [
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.29.4",
"@cosmjs/stargate": "^0.29.4",
"@cosmjs/tendermint-rpc": "^0.29.4",
"@injectivelabs/networks": "^1.0.105",
"@injectivelabs/sdk-ts": "^1.12.1",
"@injectivelabs/ts-types": "^1.0.39",
"@skip-mev/skipjs": "1.1.0",
"@slack/web-api": "^6.8.0",
"axios": "^1.3.3",
"cosmjs-utils": "^0.1.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.1"
}
}