-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
81 lines (81 loc) · 2.41 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"scripts": {
"setup": "node ./bin/index.js install",
"resetpwd": "node ./bin/index.js resetpwd",
"script": "node ./bin/index.js script",
"start": "cross-env DEBUG=null NODE_ENV=production && node dist/index.js",
"prd": "pm2 start dist/index.js --name hexon -o log/pm2-log.log -e log/pm2-err.log",
"dev": "pnpm run build && nodemon ./dist/index.js",
"build": "rimraf dist && node ./scripts/build.mjs",
"test": "jest"
},
"devDependencies": {
"@types/basic-auth": "^1.1.3",
"@types/crypto-js": "^4.1.1",
"@types/debug": "^4.1.5",
"@types/hexo": "^3.8.6",
"@types/inquirer": "^8.2.1",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.2",
"@types/koa": "^2.13.3",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa-compress": "^4.0.3",
"@types/koa-logger": "^3.1.2",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/koa2-cors": "^2.0.1",
"@types/koa__cors": "^3.0.3",
"@types/koa__router": "^8.0.4",
"@types/node": "^17.0.25",
"esbuild": "^0.14.34",
"esbuild-plugin-node-externals": "^0.3.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.7",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.4",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.6.3"
},
"dependencies": {
"@koa/cors": "^3.3.0",
"@koa/router": "^10.0.0",
"@vue/reactivity": "^3.2.33",
"@winwin/koa-authentication": "^0.2.1",
"@winwin/server-reactive-store": "^0.2.2",
"basic-auth": "^2.0.1",
"chalk": "^5.0.1",
"commander": "^9.1.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.0.0",
"dayjs": "^1.11.0",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"execa": "^6.1.0",
"hexo": "^5.4.2",
"http-errors": "^2.0.0",
"inquirer": "^8.2.2",
"jsencrypt": "^3.2.1",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-compose": "^4.1.0",
"koa-compress": "^5.1.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"node-jsencrypt": "^1.0.0",
"reflect-metadata": "^0.1.13",
"simple-json-db": "^2.0.0",
"strip-ansi": "^7.0.1",
"tsyringe": "^4.6.0",
"winston": "^3.7.2"
}
}