-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "discordbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "tsc -p tsconfig.test.json",
"test": "cd dist-test; node --test --test-concurrency=8",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"migrate": "npm run build && node -r dotenv/config dist/migrations.js",
"dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/node": "^20.11.0",
"@types/pg": "^8.11.4",
"@types/safe-regex": "^1.1.6",
"concurrently": "^8.2.2",
"culture-ships": "^1.0.3",
"dotenv": "^16.4.5",
"fastify-tsconfig": "^2.0.0",
"nodemon": "^3.0.2",
"pino-pretty": "^10.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@dylibso/xtp": "^0.0.0-rc10",
"discord.js": "^14.15.3",
"fastify": "^4.26.2",
"minimatch": "^10.0.1",
"pg": "^8.11.4",
"pokemon": "^3.2.0",
"safe-regex": "^2.1.1",
"table": "^6.8.2"
}
}