-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 910 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
39
{
"name": "02-api-rest-nodejs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"knex": "node --no-warnings --loader tsx ./node_modules/.bin/knex",
"lint": "eslint src --ext .ts --fix",
"build": "tsup src --out-dir build",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"dotenv": "^16.0.3",
"fastify": "^4.12.0",
"knex": "^2.4.2",
"pg": "^8.9.0",
"zod": "^3.20.2"
},
"devDependencies": {
"@rocketseat/eslint-config": "^1.2.0",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"eslint": "^8.33.0",
"sqlite3": "^5.1.4",
"supertest": "^6.3.3",
"tsup": "^6.5.0",
"tsx": "^3.12.2",
"typescript": "^4.9.5",
"vitest": "^0.28.3"
}
}