-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.27 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
{
"name": "google-trending-now",
"version": "1.0.0",
"description": "O objetivo desse projeto é trazer uma aplicação que salva no seu banco de dados as noticias mais relevantes disponibilizadas pela API Google Trends.\r ## Tecnologia\r Nome | Descrição | Função\r --- | --- | ---\r [TypeScript](https://www.typescriptlang.org/) | Linguagem | Backend\r [Node.js](https://nodejs.org/en) | Biblioteca | Backend\r [PostgreSQL](https://www.postgresql.org/) | Linguagem SQL | Database\r [Prisma](https://www.prisma.io/) | OCR | Database Querys\r [Google Trends](https://serpapi.com/google-trends-api) | API | Trendings Topics",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node api/app.ts",
"daily": "ts-node src/lib/daily-trending/daily.ts",
"realtime": "ts-node src/lib/realtime-trending/index.ts",
"month": "ts-node src/lib/daily-trending/month.ts"
},
"author": "lucasgianine",
"license": "ISC",
"devDependencies": {
"@prisma/client": "^5.7.1",
"@types/express": "^4.16.1",
"prisma": "^5.7.1",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.19.2",
"serpapi": "^2.0.0",
"yup": "^1.3.3"
}
}