-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.39 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.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
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
{
"name": "@gregrickaby/local-weather",
"description": "A weather app using Next.js, Mantine, Redux Toolkit, and Open-Meteo API.",
"private": true,
"version": "1.0.0",
"homepage": "https://weather.gregrickaby.com/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/local-weather.git"
},
"author": "Greg Rickaby <greg@gregrickaby.com>",
"bugs": {
"url": "https://github.com/gregrickaby/local-weather/issues"
},
"engines": {
"node": ">=24.11 <25",
"npm": ">=11"
},
"scripts": {
"build": "next build",
"dev": "rimraf .next && next dev",
"format": "prettier '**/*.{mjs,cjs,js,jsx,ts,tsx,md,css,json,yml,yaml}' --ignore-path .prettierignore --cache --write",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"start": "next start",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"sonar": "npm run test:coverage && sonar-scanner",
"validate": "npm run format && npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"@mantine/core": "8.3.16",
"@mantine/hooks": "8.3.16",
"@reduxjs/toolkit": "^2.11.2",
"@tabler/icons-react": "^3.40.0",
"@types/leaflet": "^1.9.21",
"leaflet": "^1.9.4",
"next": "^16.1.6",
"openmeteo": "^1.2.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-redux": "^9.2.0",
"suncalc": "^1.9.0"
},
"devDependencies": {
"@evilmartians/lefthook": "^2.1.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/suncalc": "^1.9.2",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-mantine": "^4.0.3",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-testing-library": "^7.16.0",
"jsdom": "^28.1.0",
"msw": "^2.12.10",
"postcss": "^8.5.8",
"postcss-preset-mantine": "1.18.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}