-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 917 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-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=18"
},
"scripts": {
"dev:server": "tsx --watch src/server.ts",
"knex": "node --no-warnings --loader tsx ./node_modules/knex/bin/cli.js",
"lint": "eslint src --ext .ts --fix",
"test": "vitest",
"build": "tsup src --out-dir build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^9.1.0",
"@types/node": "^20.6.3",
"dotenv": "^16.3.1",
"fastify": "^4.23.2",
"knex": "^2.5.1",
"pg": "^8.11.3",
"vitest": "^0.34.5",
"zod": "^3.22.2"
},
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/supertest": "^2.0.12",
"sqlite3": "^5.1.6",
"eslint": "^8.49.0",
"supertest": "^6.3.3",
"tsup": "^7.2.0",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
}
}