-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
87 lines (87 loc) · 2.67 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
{
"name": "metaconcord",
"version": "0.0.1",
"description": "metaluvit but typescript",
"main": "index.ts",
"repository": "[email protected]:metastruct/metaconcord",
"author": "marceau-maubert <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NODE_ENV=production node dist",
"dev": "cross-env NODE_ENV=development ts-node-dev -r tsconfig-paths/register index.ts",
"build": "yarn scss && rm -rf ./dist && tsc && tsconfig-replace-paths -p tsconfig.json -s ./ -o ./dist",
"scss": "sass resources/ --no-source-map",
"scss-watch": "sass --watch resources/ --no-source-map"
},
"dependencies": {
"@ffmpeg.wasm/core-mt": "^0.12.0",
"@ffmpeg.wasm/main": "^0.12.0",
"@huggingface/inference": "^2.6.4",
"@microsoft/signalr": "^8.0.7",
"@napi-rs/canvas": "^0.1.37",
"@octokit/webhooks": "^12.0.3",
"ajv": "^8.11.2",
"audio-buffer": "^5.0.0",
"axios": "^0.27.2",
"bad-words": "^3.0.4",
"cookie-parser": "^1.4.6",
"dayjs": "^1.10.6",
"diff": "^5.1.0",
"discord.js": "^14.17.2",
"dotenv": "^16.0.2",
"express": "^4.17.1",
"express-rate-limit": "^6.7.0",
"form-data": "^4.0.0",
"graphql": "^16.6.0",
"graphql-request": "^5.0.0",
"irc-upd": "^0.11.0",
"jsonwebtoken": "^9.0.0",
"node-html-to-image": "^5.0.0",
"node-schedule": "^2.1.1",
"node-ssh": "^13.0.0",
"node-wav": "^0.0.2",
"pg": "^8.8.0",
"pug": "^3.0.2",
"qs": "^6.11.0",
"sqlite": "^4.1.2",
"sqlite3": "^5.1.6",
"steamid": "^2.0.0",
"unicode-emoji-json": "^0.6.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@types/bad-words": "^3.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/diff": "^5.0.2",
"@types/express": "^4.17.6",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^18.7.23",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.5",
"@types/pug": "^2.0.4",
"@types/ssh2": "^1.11.5",
"@types/ssh2-streams": "^0.1.9",
"@types/steamapi": "^2.2.2",
"@types/steamid": "^2.0.1",
"@types/twit": "^2.2.30",
"@types/websocket": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"cross-env": "^7.0.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"prettier": "^2.0.5",
"sass": "^1.30.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"tsconfig-replace-paths": "^0.0.14",
"typescript": "^5.1.6",
"typescript-json-schema": "^0.54.0"
}
}