This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
53 lines (53 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "hexo-editor",
"version": "0.6.0",
"scripts": {
"stop": "pm2 stop hexoeditor",
"restart": "pm2 restart hexoeditor",
"start": "node bin/www",
"dev": "export DEBUG='hexo*' && export NODE_ENV='development' && npx nodemon -i ./data bin/www",
"prd": "pm2 start bin/www --name hexoeditor -o log/pm2-log.log -e log/pm2-err.log",
"test": "echo \"Error: no test specified\" && exit 1",
"sub:fe": "cd frontend && git pull origin master"
},
"dependencies": {
"basic-auth": "^2.0.1",
"chalk": "^4.1.0",
"debug": "^4.1.1",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-html": "^6.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"hexo": "^5.1.1",
"inquirer": "^7.3.3",
"is-git-repository": "^2.0.0",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-onerror": "^4.1.0",
"koa-router": "^9.4.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.20",
"log4js": "^6.3.0",
"node-env-file": "^0.1.8",
"simple-git": "^2.20.1",
"simple-json-db": "^1.2.2",
"warehouse": "^4.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}