-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "tg-tumblr-bot",
"version": "0.0.2",
"description": "Telegram and tumblr bot",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^8.0.29",
"@types/node-telegram-bot-api": "^0.40.3",
"eslint": "^6.8.0",
"jest": "^25.3.0",
"ts-jest": "^25.4.0",
"ts-node": "3.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"node-fetch": "^2.6.1",
"node-telegram-bot-api": "^0.40.0",
"reflect-metadata": "^0.1.10",
"sqlite3": "^4.0.3",
"tumblr.js": "^2.0.2",
"typeorm": "0.2.25"
},
"scripts": {
"start": "ts-node src/index.ts",
"serve": "node dist/index.js",
"build": "npm run build-ts",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"prune": "npm prune --production",
"test": "jest --forceExit --coverage --verbose"
}
}