-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 918 Bytes
/
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
{
"name": "anthonymineo-blog",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export && npm run build:maps",
"start": "next start",
"build:maps": "npm run build:rss & npm run build:sitemap",
"build:rss": "node ./.next/server/scripts/build-rss.js",
"build:sitemap": "node ./.next/server/scripts/build-sitemap.js"
},
"dependencies": {
"@mapbox/rehype-prism": "^0.6.0",
"@mdx-js/loader": "^1.6.22",
"@next/mdx": "^10.2.0",
"@tailwindcss/typography": "^0.4.0",
"@tailwindcss/ui": "^0.7.2",
"autoprefixer": "^10.2.5",
"next": "^10.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^2.1.2",
"tinytime": "^0.2.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.2.0",
"file-loader": "^6.2.0",
"rss": "^1.2.2",
"simple-functional-loader": "^1.2.1"
}
}