-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.89 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "expl-bot",
"version": "0.1.2",
"description": "expl-bot",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc --listEmittedFiles",
"build:test": "tsc --noEmit",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"mocha": "mocha",
"mocha:watch": "mocha -w --inspect",
"migrate": "knex --cwd build migrate:latest",
"migrate:dev": "knex --cwd src migrate:latest",
"lint": "prettier --check ./src ./test",
"test": "npm run lint && npm run build:test && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/majori/expl-bot.git"
},
"author": "Antti Kivimäki <antti.kivimaki@futurice.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/majori/expl-bot/issues"
},
"homepage": "https://github.com/majori/expl-bot#readme",
"engines": {
"node": "24.x"
},
"overrides": {
"braces": "3.0.3",
"picomatch": "2.3.2",
"mocha": {
"diff": "8.0.3",
"js-yaml": "5.0.0",
"serialize-javascript": "7.0.6"
},
"ts-node": {
"diff": "4.0.4"
},
"nodemon": {
"chokidar": "3.6.0"
}
},
"dependencies": {
"express": "^5.2.1",
"knex": "^3.2.10",
"lodash": "^4.18.1",
"pg": "^8.22.0",
"string-template": "^1.0.0",
"telegraf": "^4.16.3",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/express": "^5.0.6",
"@types/lodash": "^4.17.24",
"@types/mocha": "^10.0.10",
"@types/node": "^24.13.2",
"@types/node-fetch": "^2.6.13",
"@types/sinon": "^21.0.1",
"@types/string-template": "^1.0.7",
"chai": "^6.2.2",
"mocha": "^11.7.6",
"nodemon": "^3.1.14",
"prettier": "^3.8.4",
"sinon": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}