-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
{
"name": "drcm-bot",
"version": "0.1.0",
"description": "dRCM Bot",
"author": "Rodion Borisov <vintprox@gmail.com>",
"license": "MIT",
"main": "src/bot.ts",
"scripts": {
"auth": "ts-node --require dotenv-defaults/config src/auth.ts",
"heroku-postbuild": "npm install pm2",
"lint": "eslint",
"prepare": "husky install",
"start": "pm2-runtime start pm2.config.js",
"start:dev": "pm2-dev start pm2.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/drcmatrix/drcm-bot.git"
},
"bugs": {
"url": "https://github.com/drcmatrix/drcm-bot/issues"
},
"homepage": "https://github.com/drcmatrix/drcm-bot#readme",
"dependencies": {
"better-sqlite3": "^7.4.3",
"commander": "^8.2.0",
"dotenv-defaults": "^2.0.2",
"html-es6cape": "^2.0.0",
"matrix-bot-sdk": "^0.5.19",
"pm2": "^5.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0"
},
"engines": {
"node": "14.x"
},
"lint-staged": {
"*.{js,ts}": "prettier --write"
}
}