-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·39 lines (39 loc) · 1.1 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
{
"name": "vite_node_bot",
"version": "1.0.0",
"description": "Vite Node Discord bot",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean:dist": "rm -rf dist/*",
"clean:node": "rm -rf node_modules",
"clean": "npm run clean:dist && npm run clean:node",
"start": "npm run start:dev",
"start:prod": "tsc && pm2 start dist/index.js --name \"Vite Node Bot\"",
"start:dev": "tsc && node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ViNo-community/vite-node-bot.git"
},
"author": "ViNo Community",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ViNo-community/vite-node-bot/issues"
},
"homepage": "https://github.com/ViNo-community/vite-node-bot#readme",
"dependencies": {
"@vite/vitejs": "^2.3.14",
"@vite/vitejs-http": "^2.3.14",
"@vite/vitejs-ws": "^2.3.16",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"luxon": "^2.0.2",
"vitejs-notthomiz": "^2.3.15",
"winston": "^3.3.3"
},
"devDependencies": {
"ts-node": "^10.1.0",
"typescript": "^4.3.4"
}
}