-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "egitim-demo",
"version": "0.1.0",
"description": "AI destekli yazilim gelistirme egitimi demo projesi",
"main": "dist/app.js",
"scripts": {
"dev": "tsx watch src/app.ts",
"build": "tsc",
"start": "node dist/app.js",
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"lint": "eslint src/ tests/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"express": "^4.21.0",
"better-sqlite3": "^11.3.0"
},
"devDependencies": {
"typescript": "^5.6.0",
"@types/express": "^5.0.0",
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.0",
"@types/jest": "^29.5.0",
"tsx": "^4.19.0",
"eslint": "^9.10.0",
"@typescript-eslint/parser": "^8.5.0",
"@typescript-eslint/eslint-plugin": "^8.5.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"roots": ["<rootDir>/tests"],
"testMatch": ["**/*.test.ts"],
"setupFilesAfterSetup": ["./tests/setup.ts"],
"verbose": true
}
}