-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "designernewsbot",
"version": "1.0.0",
"author": "Phil Rukin <philipp@rukin.me> (https://rukin.me)",
"description": "Telegram bot that posts new hot stories from Designer News, shots from Dribbble and projects from Behance to telegram channel",
"main": "src/index.ts",
"license": "MIT",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.6",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"prisma": "^4.11.0",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "^4.11.0",
"axios": "^1.3.4",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"lru-cache": "^7.18.1",
"morgan": "^1.10.0"
},
"scripts": {
"dev": "tsnd --respawn src/index.ts",
"start": "ts-node src/index.ts",
"start:js": "node dist/index.js",
"build": "tsc",
"cron": "ts-node src/cron.ts",
"migrate": "prisma migrate",
"migrate:dev": "prisma migrate dev",
"generate": "prisma generate",
"studio": "prisma studio",
"prisma": "prisma",
"sync": "./hidden/deploy.sh",
"prepare": "husky install",
"lint-staged": "lint-staged"
}
}