-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 936 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": "02-api-rest-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "tsx watch src/server.ts",
"lint": "eslint src test --ext .ts --fix",
"migrate:make": "npx knex migrate:make",
"migrate:latest": "npx knex migrate:latest",
"migrate:rollback": "npx knex migrate:rollback",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.2.2",
"@types/node": "^20.11.30",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"supertest": "^6.3.4",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3",
"vitest": "^1.4.0"
},
"dependencies": {
"@fastify/cookie": "^9.3.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.2",
"knex": "^3.1.0",
"pg": "^8.11.4",
"sqlite3": "^5.1.7",
"zod": "^3.22.4"
}
}