-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
49
50
51
52
53
{
"name": "mittens",
"version": "2.2.0",
"description": "",
"main": "src/bot.ts",
"scripts": {
"clean": "rimraf ./dist data/database.sqlite",
"start": "ts-node --esm src/bot.ts",
"translate": "ts-node --esm src/translate/Translate.ts",
"typeorm": "npx typeorm-ts-node-esm",
"run": "npx typeorm-ts-node-esm migration:run -d ./src/db/data-source.ts",
"revert": "npx typeorm-ts-node-esm migration:revert -d ./src/db/data-source.ts",
"setup": "ts-node --esm src/db/setup.ts",
"schedule": "ts-node --esm src/utils/schedule.ts",
"holodex": "ts-node-esm src/utils/Holodex.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/im-calvin/Mittens.git"
},
"author": "Calvin",
"license": "ISC",
"bugs": {
"url": "https://github.com/im-calvin/Mittens/issues"
},
"homepage": "https://github.com/im-calvin/Mittens#readme",
"dependencies": {
"@google-cloud/translate": "^8.0.1",
"@sentry/integrations": "^7.61.0",
"@sentry/node": "^7.105.0",
"discord.js": "^14.9.0",
"dotenv": "^16.1.4",
"kuroshiro": "~1.1.2",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"node-schedule": "^2.1.1",
"pagination.djs": "^4.0.10",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.6",
"toad-scheduler": "^2.2.0",
"typeorm": "^0.3.16"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.5.1",
"@types/node-schedule": "^2.1.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"type": "module"
}