-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.51 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.51 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
{
"name": "react-weather-app",
"version": "1.0.0",
"author": "sethcg",
"license": "MIT",
"description": "Weather Application using Next, React, and Typescript.",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"format:check": "prettier --check \"**/*.+(js|ts|json|tsx)\"",
"format": "prettier --write \"**/*.+(js|ts|json|tsx)\"",
"test": "jest"
},
"dependencies": {
"@fontsource-variable/roboto-flex": "^5.2.5",
"@tailwindcss/postcss": "^4.1.13",
"clsx": "^2.1.1",
"leaflet": "^1.9.4",
"next": "^15.5.2",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@swc/core": "^1.11.24",
"@swc/jest": "^0.2.38",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/leaflet": "^1.9.17",
"@types/node": "^22.15.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19",
"eslint": "^9.34.0",
"eslint-config-next": "^15.5.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"tailwindcss": "^4.1.13",
"typescript": "^5.8.3"
}
}