-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.66 KB
/
package.json
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
{
"name": "@gregrickaby/local-weather",
"description": "A weather app using Next.js, Mantine, Edge API Routes, and the OpenWeatherMap and Google Maps API's.",
"private": true,
"version": "1.0",
"homepage": "https://localwx.vercel.app/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/local-weather.git"
},
"author": "Greg Rickaby <[email protected]>",
"bugs": {
"url": "https://github.com/gregrickaby/local-weather/issues"
},
"scripts": {
"build": "next build",
"dev": "rimraf .next && next dev",
"format": "prettier . --ignore-path .gitignore --write",
"lint": "npm run lint:css && npm run lint:js && next lint && tsc",
"lint:css": "stylelint '**/*.css' --ignore-path .gitignore --fix",
"lint:js": "eslint . --ignore-path .gitignore --fix",
"start": "next start"
},
"dependencies": {
"@mantine/core": "7.16.0",
"@mantine/hooks": "7.16.0",
"@mantine/notifications": "^7.16.0",
"@tabler/icons-react": "^3.28.1",
"next": "^15.1.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"swr": "^2.3.0"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.10.7",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"eslint": "^8.57.0",
"eslint-config-next": "^15.1.4",
"eslint-config-prettier": "^10.0.1",
"markdownlint": "^0.37.4",
"markdownlint-cli": "^0.43.0",
"postcss": "^8.5.1",
"postcss-preset-mantine": "1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"stylelint": "^16.13.2",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3"
}
}