-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.98 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
{
"name": "archive-utility",
"version": "2.0.1",
"description": "a Discord bot to archive text-channels",
"main": "dist/index.js",
"type": "module",
"scripts": {
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --fix --ext .ts",
"clean": "rimraf dist",
"build": "tsc && yarn postbuild",
"postbuild": "yarn run copy-locales",
"copy-locales": "cpy locales/**/*.* dist/ --parents",
"start": "node ."
},
"imports": {
"#util": "./dist/util/index.js",
"#util/*": "./dist/util/*.js",
"#structs": "./dist/structures/index.js",
"#const": "./dist/util/constants.js",
"#logger": "./dist/util/logger.js"
},
"author": "Carter Himmel <[email protected]>",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^1.4.0",
"@discordjs/collection": "^1.3.0",
"@discordjs/rest": "^1.5.0",
"@fyko/export-api": "^0.3.1",
"@grpc/grpc-js": "^1.8.4",
"common-tags": "^1.8.2",
"discord.js": "^14.7.1",
"express": "^4.18.2",
"fs-nextra": "^0.5.1",
"helmet": "^6.0.1",
"i18next": "^22.4.9",
"i18next-fs-backend": "^2.1.1",
"node-fetch": "^3.3.0",
"pino": "^6.14.0",
"postgres": "^3.3.3",
"prom-client": "^14.1.1",
"reflect-metadata": "^0.1.13",
"tslib": "^2.4.1",
"tsyringe": "^4.7.0"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/pino": "^6.3.12",
"@types/ws": "^8.5.4",
"cpy-cli": "^4.2.0",
"discord-api-types": "^0.37.28",
"eslint": "^8.31.0",
"eslint-config-neon": "^0.1.40",
"pino-pretty": "^3.6.1",
"prettier": "^2.8.2",
"rimraf": "^4.0.4",
"typescript": "^4.9.4"
},
"optionalDependencies": {
"bufferutil": "^4.0.7",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^6.0.0",
"zlib-sync": "^0.1.7"
},
"prettier": {
"printWidth": 120,
"useTabs": true,
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "all",
"endOfLine": "lf"
},
"volta": {
"node": "18.13.0",
"yarn": "1.22.17"
},
"packageManager": "[email protected]"
}