forked from whyour/hundun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.03 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
{
"name": "hundun",
"version": "1.0.0",
"description": "personal scripts",
"main": "src/app.ts",
"scripts": {
"build": "tsc",
"start": "nodemon",
"pm2": "npm run build && node build/app.js",
"bot": "npm run build && node build/bot/index.js",
"inspect": "nodemon --inspect src/app.ts",
"lint": "npm run lint:js ",
"lint:eslint": "eslint --ignore-path .gitignore --ext .ts",
"lint:js": "npm run lint:eslint src/",
"lint:fix": "npm run lint:js -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whyour/hundun.git"
},
"author": "whyour",
"license": "ISC",
"dependencies": {
"agenda": "^3.1.0",
"agendash": "^1.0.0",
"argon2": "^0.27.0",
"body-parser": "^1.19.0",
"celebrate": "^13.0.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"event-dispatch": "^0.4.1",
"eventemitter3": "^4.0.7",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"express-jwt": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mailgun-js": "^0.22.0",
"method-override": "^3.0.0",
"moment": "^2.29.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"reflect-metadata": "^0.1.13",
"socks-proxy-agent": "^4.0.2",
"telegraf": "^4.0.3",
"typedi": "^0.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/agenda": "^2.0.9",
"@types/express": "^4.17.8",
"@types/lodash": "^4.14.161",
"@types/mongoose": "^5.7.36",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"ts-node": "^9.0.0",
"tslint": "^5.20.1",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://github.com/whyour/hundun/issues"
},
"homepage": "https://github.com/whyour/hundun#readme"
}