-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1019 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1019 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
{
"name": "teamleader-coding-test-nodejs",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests verification",
"check-types": "tsc --noEmit -p tsconfig.json",
"report": "tsx verification/report.ts",
"verify:integrity": "tsx verification/integrity.ts",
"verify": "npm run lint && npm run check-types && npm run test"
},
"dependencies": {
"@fastify/autoload": "^6.3.1",
"fastify": "^5.8.5",
"fastify-plugin": "^6.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.8.1",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"fastify-tsconfig": "^3.0.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vitest": "^4.1.2"
}
}