-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.58 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
{
"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",
"dependencies": {
"express": "^4.17.1",
"knex": "^0.21.15",
"lodash": "^4.17.21",
"pg": "^8.3.3",
"string-template": "^1.0.0",
"telegraf": "^4.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/express": "^4.17.7",
"@types/lodash": "^4.14.157",
"@types/mocha": "^8.0.3",
"@types/node": "^10.17.13",
"@types/node-fetch": "^2.5.7",
"@types/sinon": "^9.0.5",
"@types/string-template": "^1.0.2",
"chai": "^4.2.0",
"mocha": "^9.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.2.1",
"sinon": "^9.0.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}