generated from jakubjirous/advice-generator-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.54 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
54
55
{
"name": "frontend-mentor-ip-address-tracker",
"version": "1.0.0",
"description": "The app should allow the user to input an IP address and display its location on a map, along with other information such as ISP and time zone.",
"repository": {
"type": "git",
"url": "git+https://github.com/jakubjirous/ip-address-tracker.git"
},
"keywords": [
"next.js",
"react",
"typescript",
"tanstack-react-query",
"tailwind-css"
],
"author": "Jakub Jirous <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@hookform/resolvers": "^2.9.11",
"@next/font": "13.1.6",
"@tanstack/react-query": "^4.24.10",
"@tanstack/react-query-devtools": "^4.24.10",
"@types/node": "18.13.0",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"axios": "^1.3.4",
"cssnano": "^5.1.15",
"eslint": "8.34.0",
"eslint-config-next": "13.1.6",
"mapbox-gl": "^2.13.0",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "^3.1.4",
"react-hook-form": "^7.43.2",
"react-map-gl": "^7.0.21",
"typescript": "4.9.5"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^4.24.11",
"@types/mapbox-gl": "^2.7.10",
"@types/react-map-gl": "^6.1.3",
"autoprefixer": "^10.4.13",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.3",
"tailwindcss": "^3.2.7"
}
}