-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
85 lines (85 loc) · 2.32 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
{
"name": "poracle",
"version": "4.7.0",
"description": "Webhook processing and personalised discord|telegram alarms",
"keywords": [
"poracle",
"discord",
"telegram",
"pokemon"
],
"homepage": "https://github.com/KartulUdus/reference#readme",
"bugs": {
"url": "https://github.com/KartulUdus/reference/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KartulUdus/PoracleJS.git"
},
"license": "ISC",
"author": "Kartul",
"main": "src/app.js",
"scripts": {
"dev": "node .",
"generate": "node src/util/generateData.js",
"koji": "node src/util/koji.js",
"init": "node src/init/initConfig.js",
"latest": "npm run generate latest && npm run koji && node .",
"lint": "./node_modules/.bin/eslint ./src --fix",
"migrateV3": "node src/init/migrateV3.js",
"prepare": "husky install",
"start": "npm run generate && npm run koji && node .",
"test": "node test/test"
},
"dependencies": {
"@budibase/handlebars-helpers": "^0.11.8",
"async-mutex": "^0.4.0",
"axios": "^1.4.0",
"chokidar": "^3.5.3",
"config": "^3.3.9",
"country-code-emoji": "^2.3.0",
"deep-object-diff": "^1.1.9",
"discord.js": "^13.16.0",
"fast-json-stable-stringify": "^2.1.0",
"fastify": "^4.25.2",
"flat-cache": "^3.0.4",
"form-data": "^4.0.0",
"geo-tz": "^7.0.7",
"handlebars": "^4.7.7",
"hastebin-gen": "^2.0.5",
"import-fresh": "^3.3.0",
"json5": "^2.2.3",
"knex": "^2.0.0",
"moment": "^2.29.4",
"moment-precise-range-plugin": "^1.3.0",
"moment-timezone": "^0.5.43",
"mysql2": "^3.3.3",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.11",
"node-geocoder": "^4.2.0",
"node-schedule": "^2.1.0",
"nodes2ts": "^3.0.0",
"ohbem": "^1.5.1",
"point-in-polygon": "^1.1.0",
"rbush": "^3.0.1",
"readline-sync": "^1.4.10",
"s2-geometry": "^1.2.10",
"strip-json-comments": "^3.1.1",
"suncalc": "^1.9.0",
"telegraf": "^4.12.0",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"ajv": "^8.12.0",
"chai": "^4.3.7",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.0",
"husky": "^8.0.3",
"mocha": "^10.2.0"
},
"engines": {
"node": ">=18.16.0"
}
}