-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
108 lines (108 loc) · 3.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "nico-next",
"version": "1.0.0",
"description": "Main bot for Discord Clique server",
"main": "app.ts",
"scripts": {
"dev": "nodemon",
"dev:debug": "set DEBUG=consola && yarn dev",
"start": "bun run app.ts",
"update": "npm-check -u",
"deploy": "fish ./deploy.fish",
"prepare": "husky install",
"prisma:update": "prisma migrate dev",
"postinstall": "patch-package",
"docker:dev": "docker-compose up --force-recreate --build --remove-orphans -d",
"docker:dev:db": "UPDATE_DB=1 yarn docker:dev",
"docker:build": "docker-compose build",
"dokku:env": "dokku config:set nico $(sed '/^$/d' .env | tr '\\n' ' ')",
"tasks:fetch-db": "ts-node tasks/fetch-db.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.535.0",
"@aws-sdk/s3-request-presigner": "^3.535.0",
"@faker-js/faker": "^8.4.1",
"@napi-rs/canvas": "^0.1.45",
"@prisma/client": "5.9.1",
"@solely/simple-fm": "^1.6.4",
"bigint-conversion": "^2.4.3",
"bullmq": "1.68.4",
"chalk": "^4.1.1",
"consola": "^2.15.3",
"countries-list": "^3.1.0",
"croner": "^8.0.1",
"date-fns": "2.28.0",
"diff": "^5.2.0",
"discord.js": "^14.16.3",
"emittery": "^0.9.2",
"emoji-regex": "10.0.0",
"env-var": "^7.1.1",
"eslint": "^7.26.0",
"file-type": "^16.5.0",
"fuse.js": "6.5.3",
"glob": "^8.0.1",
"google-spreadsheet": "3.2.0",
"husky": "^7.0.4",
"ioredis": "4.28.5",
"iso-3166-1-alpha-2": "^1.0.1",
"metascraper": "^5.44.0",
"metascraper-date": "^5.44.0",
"metascraper-description": "^5.44.0",
"metascraper-image": "^5.44.0",
"metascraper-title": "^5.44.0",
"metascraper-youtube": "^5.44.0",
"mime-types": "^2.1.31",
"moize": "^6.1.0",
"nanoid": "3.2.0",
"normalize-url": "^4.5.0",
"ordinal": "^1.0.3",
"parse-duration": "^1.1.0",
"patch-package": "^6.4.7",
"prisma": "5.9.1",
"radix-64": "^1.0.4",
"ramda": "^0.27.1",
"remove": "^0.1.5",
"rimraf": "^3.0.2",
"spotify-web-api-node": "^5.0.2",
"string-progressbar": "^1.0.4",
"twitter-api-v2": "1.10.0",
"twitter-openapi-typescript": "^0.0.27",
"video-url-link": "^0.1.5",
"wikijs": "6.3.3",
"ws": "^8.5.0",
"youtube.ts": "^0.2.9",
"zod": "^3.11.6"
},
"devDependencies": {
"@types/async": "^3.2.7",
"@types/bun": "^1.0.5",
"@types/diff": "^5.0.0",
"@types/express": "^4.17.11",
"@types/fuzzy-search": "^2.1.0",
"@types/glob": "^7.2.0",
"@types/google-spreadsheet": "^3.1.5",
"@types/ioredis": "^4.28.8",
"@types/iso-3166-1-alpha-2": "^1.0.2",
"@types/mime-types": "^2.1.0",
"@types/minio": "^7.0.13",
"@types/node-fetch": "2.5.12",
"@types/pako": "^1.0.1",
"@types/ramda": "^0.27.41",
"@types/require-all": "^3.0.2",
"@types/spotify-web-api-node": "^5.0.3",
"@types/twit": "^2.2.29",
"@types/ws": "8.2.2",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"dotenv-run-script": "^0.2.0",
"nodemon": "^2.0.12",
"npm-check": "^5.9.2",
"prettier": "2.5.1",
"typescript": "^5.5.1-rc"
},
"overrides": {
"re2": "npm:@dashevo/wasm-re2"
}
}