-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 975 Bytes
/
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
{
"name": "desafio-2",
"version": "1.0.0",
"description": "Desafio 02 - Daily diet API",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"knex": "node --no-warnings --loader tsx ./node_modules/.bin/knex",
"lint": "eslint src --ext .ts --fix",
"test": "vitest",
"build": "tsup src --out-dir build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"sqlite3": "^5.1.7",
"tsup": "^8.2.4",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
},
"dependencies": {
"@fastify/cookie": "^9.4.0",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"dotenv": "^16.4.5",
"fastify": "^4.28.1",
"knex": "^3.1.0",
"pg": "^8.12.0",
"supertest": "^7.0.0",
"zod": "^3.23.8"
}
}