-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.22 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": "daily-diet-api",
"version": "1.0.0",
"description": "API de controle diário de dieta - Daily Diet API",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"lint": "eslint src --ext .ts --fix",
"knex": "node --no-warnings --loader tsx ./node_modules/knex/bin/cli.js",
"dev": "tsx watch src/server.ts",
"test": "vitest",
"build": "tsup src --out-dir build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RenanFachin/RS_IGNITE_daily-diet-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RenanFachin/RS_IGNITE_daily-diet-API/issues"
},
"homepage": "https://github.com/RenanFachin/RS_IGNITE_daily-diet-API#readme",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"dotenv": "^16.0.3",
"fastify": "^4.15.0",
"knex": "^2.4.2",
"pg": "^8.10.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"eslint": "^8.38.0",
"supertest": "^6.3.3",
"sqlite3": "^5.1.6",
"tsup": "^6.7.0",
"tsx": "^3.12.6",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
}
}