generated from lertsoft/typescript_nextjs_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
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
{
"name": "something_to_do",
"description": "This website was created with the purpose of better organizing all my saved places on google maps, and so that I can more easily find the places that i want to go or have been.",
"version": "1.0.0",
"private": true,
"author": "Ronny Coste <[email protected]> (@costeronny)",
"keywords": [
"nextjs",
"Places to visit",
"Personal Reviews",
"google-maps-api",
"react",
"personal-tools",
"pwa",
"typescript"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build-stats": "cross-env ANALYZE=true npm run build",
"export": "next export",
"build-prod": "run-s clean build export",
"clean": "rimraf .next out",
"lint": "next lint",
"build-types": "tsc --noEmit --pretty",
"prepare": "husky install"
},
"dependencies": {
"@react-google-maps/api": "^2.12.2",
"@react-google-maps/marker-clusterer": "^2.11.8",
"@types/eslint": "^8.21.3",
"@types/google-map-react": "^2.1.7",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"d3": "^7.6.1",
"next": "^12.1.0",
"next-pwa": "^5.5.5",
"next-seo": "^5.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.5",
"vercel": "^28.4.12"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^4.1.3",
"@next/bundle-analyzer": "^12.1.0",
"@types/node": "^17.0.23",
"@types/react": "^17.0.42",
"@types/styled-components": "^5.1.24",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"cssnano": "^5.1.5",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.4",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-preset-env": "^7.4.3",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.2"
},
"resolutions": {
"@types/react": "17.0.14",
"@types/react-dom": "17.0.14"
},
"license": "MIT"
}