forked from tscanlin/next-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.35 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
{
"name": "next-blog",
"version": "3.2.6",
"description": "Markdown based blog using next.js",
"main": "index.js",
"homepage": "http://timscanlin.net",
"twitter": "tim_scanlin",
"scripts": {
"start": "node server.js",
"build": "next build",
"build:content": "processmd content/**/*.md --outputDir content --preview 110 --highlightCode --summaryOutput content/summary.json",
"build:content:watch": "processmd content/**/*.md --outputDir content --preview 110 --highlightCode --summaryOutput content/summary.json --watch",
"build:export": "npm run build && npm run export",
"export": "next export && cp -R static/* out/",
"deploy": "npm run build:content && npm run build:export && mv out public",
"server": "NODE_ENV=production node server.js",
"v-patch": "npm version patch && git push --tags && npm publish && git push",
"v-minor": "npm version minor && git push --tags && npm publish && git push",
"v-major": "npm version major && git push --tags && npm publish && git push"
},
"keywords": [
"blog",
"next.js",
"next",
"Tim",
"Scanlin"
],
"author": "Tim Scanlin",
"license": "MIT",
"devDependencies": {
"next": "^10.2.0",
"processmd": "^4.6.1",
"standard": "^16.0.3"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-jsx": "^3.4.4"
}
}