-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 929 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": "blog",
"version": "1.0.0",
"description": "outside the cat door",
"main": "index.js",
"repository": "https://github.com/alanwei0/blog.git",
"author": "Alan <[email protected]>",
"license": "MIT",
"scripts": {
"preview": "",
"build": "node ./generator",
"dev": "NODE_ENV=development yarn build",
"prod": "NODE_ENV=production yarn build",
"deploy": "git worktree add .site gh-pages && rm -r .site/* && cp -r dist/* .site && cd .site && git add -A && git ci -m \"deploy\" && git push origin gh-pages && cd .. && git worktree remove .site"
},
"dependencies": {
"ejs": "^3.1.5",
"fs-extra": "^9.0.1",
"lodash": "^4.17.20",
"markdown-it": "^12.0.2",
"prismjs": "^1.22.0",
"yaml": "^1.10.0"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@types/fs-extra": "^9.0.4",
"eslint": "^7.14.0",
"eslint-plugin-node": "^11.1.0"
}
}