-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.63 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
{
"name": "elections-bot",
"version": "1.0.0",
"description": "",
"main": "dist/start-bot.js",
"type": "module",
"scripts": {
"build": "rimraf dist && npx swc src -d dist --strip-leading-paths",
"commands:register": "npm run build && node --enable-source-maps dist/start-bot.js commands register",
"dev": "concurrently \"npm run watch:swc\" \"npm run watch:nodemon\"",
"start": "npm run start:bot",
"start:bot": "npm run build && node --enable-source-maps dist/start-bot.js",
"start:api": "npm run build && node --enable-source-maps dist/start-api.js",
"watch:swc": "npx swc src -d dist --strip-leading-paths -w",
"watch:nodemon": "nodemon --watch './**/*.{ts}'"
},
"keywords": [],
"author": "Daniel Pivovarov",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"discord.js": "^14.14.1",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"i18n": "^0.15.1",
"kysely": "^0.27.4",
"mkdirp": "^3.0.1",
"multer": "^1.4.5-lts.1",
"pg": "^8.12.0",
"puppeteer": "^23.6.0"
},
"devDependencies": {
"@swc/cli": "^0.5.1",
"@swc/core": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/i18n": "^0.13.12",
"@types/multer": "^1.4.12",
"@types/node": "^20.11.25",
"@types/pg": "^8.11.8",
"chokidar": "^3.6.0",
"concurrently": "^8.2.2",
"discord-api-types": "^0.37.73",
"nodemon": "^3.1.0",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
}
}