-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "weather-api",
"version": "1.0.0",
"description": "Weather API using OpenWeatherMap 3.0 One Call endpoint",
"main": "index.js",
"scripts": {
"start": "npx vercel dev",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,json,md}\"",
"type-check": "tsc --noEmit",
"check": "npm run format:check && npm run lint && npm run type-check && npm run test",
"prepare": "husky"
},
"keywords": [
"weather",
"api",
"vercel"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=24.x"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vercel/node": "^3.2.12",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"typescript": "^5.7.3",
"vitest": "^2.1.0"
}
}