-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
{
"name": "frontend-learning-api",
"private": true,
"type": "module",
"version": "1.0.0",
"dependencies": {
"cors": "^2.8.5",
"express": "^5.1.0",
"pg": "^8.16.3"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.7.2",
"@types/pg": "^8.15.5",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"http-status-codes": "^2.3.0",
"jiti": "^2.6.1",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1",
"vitest": "^3.2.4"
},
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"lint": "eslint .",
"lint:watch": "nodemon --watch src --ext ts,tsx --exec 'npx eslint --no-cache'",
"prettier-format": "prettier --config .prettierrc --write 'src/**/*.ts' 'tests/**/*.ts'",
"test": "vitest --typecheck",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui --coverage --api.host 0.0.0.0"
}
}