-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.39 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.39 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
47
48
49
50
{
"name": "appointment-manager",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "tsx --watch --env-file .env src/index.ts",
"start": "node --env-file .env dist/src/index.js",
"build": "tsc",
"build:start": "tsc && node --env-file .env dist/src/index.js",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:run": "vitest --run",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexdia25/appointment-manager.git"
},
"author": "Alex Diakovsky",
"license": "ISC",
"bugs": {
"url": "https://github.com/alexdia25/appointment-manager/issues"
},
"homepage": "https://github.com/alexdia25/appointment-manager#readme",
"dependencies": {
"express": "^5.1.0",
"mysql2": "^3.15.3",
"sequelize": "^6.37.7"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@tsconfig/node22": "^22.0.4",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"@vitest/coverage-v8": "^4.0.10",
"@vitest/eslint-plugin": "^1.4.3",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^4.0.10"
}
}