-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "onruntime-discord-bot",
"version": "0.0.1",
"main": "dist/index.js",
"author": "onRuntime Studio <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/index",
"dev": "nodemon --exec ts-node src/index",
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"docker:build": "docker build . -t expatsfacilities-api",
"docker:run": "docker run -p 8000:8000 expatsfacilities-api"
},
"dependencies": {
"discord.js": "^14.11.0",
"dixt": "^2.1.11",
"dixt-plugin-affix": "^1.0.9",
"dixt-plugin-logs": "^2.1.17",
"dixt-plugin-presence": "^1.0.11",
"dixt-plugin-react": "^2.1.12",
"dixt-plugin-reports": "^1.0.4",
"dixt-plugin-roles": "^1.0.6",
"dixt-plugin-twitch": "^1.1.17",
"dixt-plugin-worktime": "^2.2.0"
},
"devDependencies": {
"@types/node": "^20.1.7",
"eslint": "^8.40.0",
"eslint-config-antoine": "^1.0.3",
"nodemon": "^3.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}