-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.56 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
{
"name": "mad-news-rtf6x-bot",
"version": "1.0.1",
"description": "Генератор самых драматических новостей. Сенсационные факты о Российской глубинке!",
"main": "index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"start:dev": "concurrently --handle-input \"wait-on dist/index.js && nodemon\" \"tsc -w\" ",
"start:debug": "nodemon --config nodemon-debug.json",
"prestart:prod": "rimraf dist && npm run build",
"start:prod": "node dist/index.js",
"lint": "tslint -c tslint.json",
"test": "echo \"Error: no test specified\" && exit 1",
"rumors": "ts-node -e \"import madRumors from './src/webhook/madRumors'; console.log(madRumors())\""
},
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"body-parser": "^1.20.1",
"cheerio": "^1.0.0-rc.12",
"dayjs": "^1.11.3",
"express": "^4.19.2",
"mad-news": "^2.0.2",
"morgan": "^1.9.1",
"node-fetch": "^2.6.7",
"redis": "^3.1.2",
"reflect-metadata": "^0.1.13",
"rimraf": "2.6.3",
"rxjs": "^6.5.2",
"twilio": "^4.8.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/node": "^20.4.5",
"nodemon": "2.0.21",
"prettier": "1.17.1",
"ts-node": "8.2.0",
"tsconfig-paths": "3.8.0",
"tslint": "5.16.0",
"typescript": "4.9.5"
}
}