This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.59 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.59 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "weather",
"private": true,
"version": "1.0.1",
"type": "module",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"description": "Premium weather app with dark/light themes, animated SVG icons, and comprehensive forecasting",
"keywords": [
"weather",
"react",
"typescript",
"theme",
"forecast",
"animated-icons"
],
"scripts": {
"build:ultra": "npx tsc -b && npx vite build --mode production",
"build:fallback": "npx vite build --mode production",
"dev": "vite",
"build": "npx tsc -b && npx vite build",
"build:production": "npm run build",
"preview": "vite preview",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:fast": "vitest run --reporter=basic",
"test:ci": "vitest run --reporter=verbose",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"lint:check": "eslint . --max-warnings 0",
"stylelint": "npx stylelint \"src/**/*.css\"",
"stylelint:fix": "npx stylelint \"src/**/*.css\" --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "npx tsc --noEmit",
"health": "npm run lint && npm run stylelint && npm run type-check && npm run test:fast",
"check:headers": "node -e \"console.log('See docs/HEADERS_CONFIGURATION.md for header checks')\"",
"check:version": "node scripts/check-version.mjs",
"check": "npm run lint && npx tsc --noEmit",
"precommit": "npm run check",
"postinstall": "npx simple-git-hooks",
"clean": "rm -rf dist coverage .vite node_modules/.cache",
"clean:deps": "rm -rf node_modules package-lock.json && npm install",
"analyze": "npm run build && npx vite-bundle-analyzer dist/stats.html",
"deploy:production": "npm run build && npx wrangler pages deploy dist --project-name weather --branch main",
"deploy:preview": "npm run build && npx wrangler pages deploy dist --project-name weather",
"mobile:build": "npm run build && npx cap sync",
"mobile:android": "npx cap run android",
"mobile:ios": "npx cap run ios",
"screenshots": "npx playwright test e2e/screenshots.spec.ts",
"screenshots:frame": "node scripts/frame-screenshots.mjs",
"screenshots:all": "npm run screenshots && npm run screenshots:frame"
},
"dependencies": {
"@capacitor/app": "^7.0.2",
"@capacitor/device": "^7.0.2",
"@capacitor/geolocation": "^7.1.5",
"@capacitor/haptics": "^7.0.2",
"@capacitor/ios": "^7.4.5",
"@capacitor/local-notifications": "^7.0.2",
"@capacitor/network": "^7.0.2",
"react": "^19.1.1",
"react-dom": "^19.1.1"
},
"devDependencies": {
"@capacitor/cli": "^7.4.3",
"@capacitor/core": "^7.4.3",
"@eslint/js": "^9.34.0",
"@playwright/test": "^1.58.1",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.34.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"fake-indexeddb": "^6.1.0",
"glob": "^11.0.3",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"prettier": "^3.3.3",
"rollup": "^4.50.1",
"sharp": "^0.34.5",
"simple-git-hooks": "^2.13.1",
"typescript": "~5.9.0",
"typescript-eslint": "^8.35.1",
"vite": "^7.1.3",
"vitest": "^3.2.4",
"wrangler": "^4.25.0"
},
"simple-git-hooks": {
"pre-commit": "node scripts/pre-commit-hook.ts --fix"
}
}