-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.92 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": "photo-of-the-day-unsplash",
"description": "Daily changing image from various artists. Photo collection curated by Unsplash.com.",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "ANALYZE=true next build",
"start": "next start",
"cpFavDev": "cp src/assets/favicon/faviconDev/favicon.ico ./public/favicon.ico && cp src/assets/favicon/faviconDev/favicon.svg ./public/favicon.svg",
"cpFavPrd": "cp src/assets/favicon/faviconPrd/favicon.ico ./public/favicon.ico && cp src/assets/favicon/faviconPrd/favicon.svg ./public/favicon.svg",
"postinstall": "yarn cpFavDev",
"prebuild": "yarn cpFavPrd",
"sitemapPingGoogle": "curl -isSL -o /dev/null -w \"\\n%{http_code}\\n\" \"https://www.google.com/ping?sitemap=https%3A%2F%2F${npm_package_name}.vercel.app%2Fsitemap.xml\"; echo \"Exit code: $?\"; echo ''",
"sitemapPing": "yarn sitemapPingGoogle"
},
"dependencies": {
"@ctrl/tinycolor": "^3.4.1",
"@headlessui/react": "^1.6.3",
"@heroicons/react": "^1.0.6",
"@svgr/webpack": "^6.2.1",
"next": "^12.1.6",
"next-seo": "^5.4.0",
"plaiceholder": "^2.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.6",
"@styled-jsx/plugin-sass": "^4.0.2",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@types/node": "17.0.23",
"@types/react": "17.0.43",
"@types/tailwindcss": "^3.0.10",
"autoprefixer": "^10.4.7",
"mini-svg-data-uri": "^1.4.4",
"next-compose-plugins": "^2.2.1",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"sass": "^1.52.1",
"styled-jsx-plugin-postcss": "^4.0.1",
"tailwindcss": "^3.0.24",
"typescript": "4.6.3"
},
"peerDependencies": {},
"optionalDependencies": {
"sharp": "^0.30.6"
}
}