-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
40
41
42
43
44
45
46
{
"name": "api_rest_node_fastfy",
"version": "1.0.0",
"description": "",
"main": "server.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx watch src/server.ts",
"knex": "node --import tsx ./node_modules/.bin/knex",
"lint": "eslint src --ext .ts --fix",
"build": "tsup src --out-dir build",
"test": "vitest"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.35.0",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/node": "^24.3.1",
"@types/supertest": "^6.0.3",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "3.6.2",
"sqlite3": "^5.1.7",
"supertest": "^7.1.4",
"tsup": "^8.5.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"vitest": "^3.2.4"
},
"dependencies": {
"@fastify/cookie": "^11.0.2",
"dotenv": "^17.2.2",
"fastify": "^5.5.0",
"knex": "^3.1.0",
"pg": "^8.16.3",
"zod": "^4.1.7"
}
}