-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.22 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
{
"name": "learn-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"predeploy": "yarn generate-rss && yarn build && touch out/.nojekyll && touch out/CNAME && echo \"www.vandebron.tech\" > out/CNAME",
"predeploy-pr": "yarn generate-rss && yarn build && touch out/.nojekyll && rm -f out/CNAME || true && cp -r .next/ out/.next",
"deploy": "node gh-pages.js",
"generate-rss": "node ./generate-rss.mjs"
},
"dependencies": {
"@vandebron/windmolen": "^15.28.1-alpha.1",
"bootstrap": "^4.6.0",
"gray-matter": "^4.0.2",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-pngquant": "^9.0.1",
"markdown-it": "^13.0.1",
"next": "^10.0.1",
"next-transpile-modules": "^4.1.0",
"react": "16.8",
"react-bootstrap": "^1.4.3",
"react-dom": "16.8",
"react-markdown": "^6.0.3",
"react-syntax-highlighter": "^13.5.3",
"rehype-raw": "^5.1.0",
"remark-gfm": "^1.0.0",
"responsive-loader": "^2.1.1",
"sharp": "^0.32.0"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"next-compose-plugins": "^2.2.0",
"next-optimized-images": "^2.6.2"
}
}