-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
88 lines (88 loc) · 2.58 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
82
83
84
85
86
87
88
{
"name": "genesis",
"version": "2.11.11",
"private": true,
"description": "A Warframe bot for your Discord server or clan :star:",
"keywords": [
"warframe",
"genesis",
"discord"
],
"homepage": "https://genesis.warframestat.us",
"bugs": {
"url": "https://github.com/WFCD/genesis/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/WFCD/genesis.git"
},
"license": "Apache-2.0",
"author": "wfcd",
"contributors": [
"tobitenno <[email protected]> (https://github.com/tobitenno)",
"nspacestd (https://github.com/nspacestd)"
],
"type": "module",
"main": "main.js",
"scripts": {
"build": "docker build . -t genesis",
"lint": "eslint main.js src/",
"lint:fix": "eslint main.js src/ --fix",
"logs": "pm2 logs genesis",
"logs:worker": "pm2 logs /worker.*/",
"prepare": "husky",
"restart": "pm2 delete genesis && npm start && npm run logs",
"start": "pm2 start genesis.json --only genesis",
"start:logs": "npm start && npm run logs",
"start:logs:worker": "npm run start:worker && npm run logs:worker",
"start:worker": "pm2 start worker.json",
"stop": "pm2 delete genesis",
"test": "NODE_ENV=test mocha",
"uninstall": "pm2 kill && rm -rf node_modules/ && npm uninstall -g pm2",
"update:genesis": "pm2 delete genesis && git checkout -- . && git pull && npm i && npm restart || npm start"
},
"prettier": "@wfcd/eslint-config/prettier",
"dependencies": {
"@sentry/node": "^7.119.2",
"@spectacles/rest": "^0.8.3",
"bluebird": "^3.7.2",
"bufferutil": "^4.0.8",
"colors": "1.4.0",
"cron": "^3.1.9",
"dayjs": "^1.11.13",
"decache": "^4.6.2",
"discord.js": "^13.17.1",
"flat-cache": "^3.2.0",
"i18n-string-templates": "^1.0.7",
"json-query": "^2.2.2",
"mysql2": "^2.3.3",
"node-fetch": "^3.3.0",
"numeral": "^2.0.6",
"parse-duration": "^1.1.0",
"ping": "^0.4.4",
"rss-feed-emitter": "^3.2.3",
"sql-template-strings": "^2.2.2",
"url-exists": "^1.0.3",
"warframe-name-generator": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/flat-cache": "^2.0.2",
"@wfcd/eslint-config": "^1.6.3",
"chai": "^5.1.2",
"discord-api-types": "^0.37.103",
"dotenv": "^16.4.5",
"husky": "^9.1.6",
"install-peerdeps": "^3.0.3",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2"
},
"optionalDependencies": {
"erlpack": "github:discord/erlpack",
"zlib-sync": "^0.1.9"
},
"engines": {
"node": ">=16.6.2"
}
}