-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 923 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 923 Bytes
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": "transactions-restapi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node" : ">=18"
},
"scripts": {
"test": "vitest",
"dev": "tsx watch src/server.ts",
"knex": "node --loader tsx ./node_modules/knex/bin/cli.js --knexfile ./knexfile.ts",
"build": "tsup src --d build",
"lint": "eslint src --ext .ts --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rocketseat/eslint-config": "^2.1.0",
"@types/node": "^20.5.9",
"@types/supertest": "^2.0.12",
"eslint": "^8.48.0",
"supertest": "^6.3.3",
"tsup": "^7.2.0",
"tsx": "^3.12.8",
"typescript": "^5.2.2",
"vitest": "^0.34.4"
},
"dependencies": {
"@fastify/cookie": "^9.0.4",
"dotenv": "^16.3.1",
"fastify": "^4.22.2",
"knex": "^2.5.1",
"pg": "^8.11.3",
"sqlite3": "^5.1.6",
"zod": "^3.22.2"
}
}