-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 1.06 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
{
"name": "mineplexmonitor",
"version": "1.0.0",
"description": "A simple Typescript server for monitoring your local Mineplex Network",
"repository": {
"type": "git",
"url": "git+https://github.com/timing1337/MineplexMonitor.git"
},
"author": "timing1337",
"scripts": {
"dev": "npx ts-node-dev --respawn --transpile-only true src/index.ts",
"prod": "ts-node src/index.ts"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/timing1337/MineplexMonitor/issues"
},
"homepage": "https://github.com/timing1337/MineplexMonitor#readme",
"dependencies": {
"chalk": "^4.1.2",
"fastify": "^4.17.0",
"ioredis": "^5.3.2",
"mysql2": "^3.3.2",
"reflect-metadata": "^0.1.13",
"sequelize": "^6.31.1",
"sequelize-typescript": "^2.1.5"
},
"devDependencies": {
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}