-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 916 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-ignite-transactions-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">= 18"
},
"scripts": {
"dev": "tsx watch ./src/server.ts",
"build": "tsup ./src -d build",
"lint": "eslint src --ext .ts --fix",
"knex": "node --no-warnings --loader tsx ./node_modules/.bin/knex",
"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.19",
"@types/supertest": "^2.0.12",
"eslint": "^8.33.0",
"supertest": "^6.3.3",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5",
"sqlite3": "^5.1.4",
"vitest": "^0.29.1"
}
}