-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
36 lines (36 loc) · 1.39 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
{
"name": "homepage",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"export": "next export",
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && cp -rf out/* ../gh-pages && cd ../gh-pages && git pull origin master && git add . && git commit -m 'Update' && git push origin master && cd ../ilab-website",
"push": "git subtree push --prefix out origin gh-pages",
"force": "git push origin `git subtree split --prefix out master`:gh-pages --force",
"build:content": "processmd \"content/**/*.{yaml,md}\" --outputDir content/output --summaryOutput content/output/summary.json",
"watch": "processmd \"content/**/*.{yaml,md}\" --outputDir content/output --summaryOutput content/output/summary.json --watch --markdownOptions.html true"
},
"author": "Ryo Suzuki <ryosuzk@googlemail.com> (http://ryosuzuki.org/)",
"license": "ISC",
"dependencies": {
"@zeit/next-css": "^1.0.1",
"compress-images": "^1.5.8",
"directory-tree": "^2.2.4",
"jquery": "^3.4.1",
"next": "^8.1.0",
"next-routes": "^1.4.2",
"png-to-jpeg": "^1.0.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"semantic-ui-modal": "^2.4.1",
"sharp": "^0.30.4"
},
"devDependencies": {
"processmd": "^4.2.1"
}
}