-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.37 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
{
"name": "consulta-pontos-api",
"version": "1.0.0",
"description": "Consulte a pontuação oferecida por diversos programas de fidelidade em um só lugar",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup src --out-dir build",
"start": "node build/server.cjs",
"lint:fix": "biome check --write",
"db:seed:create": "node --import tsx/esm ./node_modules/.bin/knex seed:make",
"db:seed:run": "node --import tsx/esm ./node_modules/.bin/knex seed:run",
"db:migrate:create": "node --import tsx/esm ./node_modules/.bin/knex migrate:make -x ts",
"db:migrate:latest": "node --import tsx/esm ./node_modules/.bin/knex migrate:latest",
"db:migrate:rollback": "node --import tsx/esm ./node_modules/.bin/knex migrate:rollback"
},
"keywords": [],
"author": "Petrus Pierre",
"license": "GPL-3.0-only",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/node": "^20.14.9",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"tsx": "^4.16.0",
"typescript": "^5.5.3"
},
"dependencies": {
"@fastify/rate-limit": "^9.1.0",
"@unkey/api": "^0.23.0",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"inversify": "^6.0.2",
"knex": "^3.1.0",
"pg": "^8.12.0",
"puppeteer": "^22.12.1",
"reflect-metadata": "^0.2.2",
"zod": "^3.23.8"
}
}