-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.46 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": "msociety-nano-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev src/bot.ts",
"tsc": "tsc --noEmit",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"test": "jest",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/debug": "^4.1.7",
"@types/jest": "^27.0.3",
"@types/jest-when": "^2.7.3",
"@types/level": "^6.0.0",
"@types/levelup": "^4.3.3",
"@types/memdown": "^3.0.0",
"@types/ws": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-when": "^3.4.2",
"level-mem": "^6.0.1",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
},
"dependencies": {
"@dev-ptera/nano-node-rpc": "^2.0.2",
"@grammyjs/menu": "^1.0.1",
"await-lock": "^2.1.0",
"debug": "^4.3.3",
"dotenv": "^10.0.0",
"grammy": "^1.4.2",
"level": "^7.0.1",
"loglevel": "^1.8.0",
"nanocurrency": "^2.5.0",
"reconnecting-websocket": "^4.4.0",
"ws": "^8.3.0"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}