-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.08 KB
/
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": "db_dr",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.5",
"typescript-eslint": "^8.9.0"
},
"dependencies": {
"fastify": "^5.0.0",
"node-fetch": "^3.3.2"
},
"scripts": {
"start": "NODE_OPTIONS='--loader ts-node/esm' ts-node src/index.ts",
"start:docker": "docker-compose up --build",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build": "tsc",
"test": "jest",
"test:docker": "docker-compose -f docker-compose.test.yml up --build --abort-on-container-exit"
}
}