-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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
{
"name": "ghauth",
"version": "0.7.2",
"description": "轻量的MC服务器yggdrasil验证",
"main": "app.js",
"author": "戴兜([email protected])",
"license": "MIT",
"scripts": {
"start": "pm2 start ecosystem.config.js",
"restart": "pm2 restart ecosystem.config.js",
"reload": "pm2 reload ecosystem.config.js",
"stop": "pm2 stop ecosystem.config.js",
"logs": "pm2 logs ghauth",
"monit": "pm2 monit ecosystem.config.js",
"helper": "node ./src/install/install.js",
"dev": "nodemon -i ./test/",
"prepare": "husky install",
"lint": "eslint ./ --fix",
"format": "prettier . --write"
},
"dependencies": {
"colors": "^1.4.0",
"crypto-js": "^4.1.1",
"global": "^4.4.0",
"inquirer": "8.0.0",
"ioredis": "^5.2.3",
"js-yaml": "^4.1.0",
"jstransformer-markdown-it": "^3.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"koa-redis": "^4.0.1",
"koa-router": "^12.0.0",
"koa-session": "^6.2.0",
"koa-static-cache": "^5.1.4",
"koa-views": "^8.0.0",
"koa2-ratelimit": "^1.1.2",
"mongoose": "^6.5.3",
"node-rsa": "^1.1.1",
"nodemailer": "^6.7.8",
"pm2": "^5.2.0",
"pngjs-nozlib": "^1.0.0",
"pug": "^3.0.2",
"svg-captcha": "^1.4.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-pug": "^1.2.4",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"nodemonConfig": {
"restartable": "rs",
"ignore": [
".git",
".svn",
"node_modules/**/node_modules",
"public"
],
"verbose": true,
"watch": [],
"env": {
"NODE_ENV": "development"
},
"script": "app.js",
"ext": "js json"
}
}