-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 901 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": "apirest-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",
"test": "vitest",
"build": "tsup src --out-dir build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/node": "^20.9.0",
"@types/supertest": "^2.0.16",
"eslint": "^8.53.0",
"supertest": "^6.3.3",
"tsup": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
},
"dependencies": {
"@fastify/cookie": "^9.2.0",
"dotenv": "^16.3.1",
"fastify": "^4.24.3",
"knex": "^3.0.1",
"pg": "^8.11.3",
"sqlite3": "^5.1.6",
"zod": "^3.22.4"
}
}