-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.5 KB
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
109
{
"type": "module",
"name": "metaconcord",
"version": "0.0.1",
"description": "metaluvit but typescript",
"exports": "./index.ts",
"engines": {
"node": ">=22.0.0"
},
"repository": "git@github.com:metastruct/metaconcord",
"author": "marceau-maubert <marceau.maubert2@gmail.com>",
"license": "MIT",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node dist",
"dev": "cross-env NODE_ENV=development DEBUG=express:*,router,router:* node dist",
"dev:web": "cross-env METACONCORD_SERVICES=infra,web NODE_ENV=development DEBUG=express:*,router,router:* node dist",
"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",
"fix": "prettier --write .",
"check": "eslint . && prettier --check .",
"fluxer:mirror": "node scripts/fluxer-mirror.mjs",
"fluxer:mirror-expressions": "node scripts/fluxer-mirror-expressions.mjs",
"test:fluxer": "node --test test/fluxer-mappings.test.mjs",
"test:oidc": "cross-env NODE_ENV=development node dist/test/oidc.test.js",
"test:fluxer:dist": "node --test test/fluxer-formatting-dist.test.mjs",
"schema:gen": "node schema_gen.mjs"
},
"dependencies": {
"@ffmpeg.wasm/core-mt": "^0.13.2",
"@ffmpeg.wasm/main": "^0.13.1",
"@gitbeaker/rest": "^43.8.0",
"@microsoft/signalr": "^10.0.0",
"@napi-rs/canvas": "^0.1.37",
"@octokit/auth-app": "^8.1.2",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.1.3",
"@resvg/resvg-js": "^2.6.2",
"ajv": "^8.17.1",
"axios": "^1.18.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dayjs": "^1.11.21",
"diff": "^8.0.4",
"discord-interactions": "^4.4.0",
"discord.js": "^14.27.0",
"dotenv": "^16.6.1",
"express": "^5.2.1",
"express-rate-limit": "^7.5.1",
"form-data": "^4.0.6",
"graphql": "^17.0.1",
"graphql-request": "^7.4.0",
"irc-upd": "^0.11.0",
"jsonwebtoken": "^9.0.0",
"mime": "^4.1.0",
"node-schedule": "^2.1.1",
"node-wav": "^0.0.2",
"oidc-provider": "^9.12.2",
"pg": "^8.21.0",
"pino": "^10.3.1",
"pino-http": "^11.0.0",
"pug": "^3.0.2",
"qs": "^6.11.0",
"sqlite": "^5.1.1",
"sqlite3": "^6.0.1",
"steamid": "^2.1.0",
"unicode-emoji-json": "^0.9.0",
"vrchat": "^2.22.8",
"websocket": "^1.0.35"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@types/bad-words": "^3.0.0",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.19",
"@types/diff": "^7.0.2",
"@types/express": "^5.0.1",
"@types/jsonwebtoken": "^8.5.1",
"@types/node": "^22.0.0",
"@types/node-schedule": "^2.1.0",
"@types/oidc-provider": "^9",
"@types/pg": "^8.6.5",
"@types/pug": "^2.0.4",
"@types/steamapi": "^2.2.5",
"@types/steamid": "^2.0.4",
"@types/twit": "^2.2.30",
"@types/websocket": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.48.0",
"cross-env": "^7.0.2",
"eslint": "10.6.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.7.0",
"prettier": "^3.9.3",
"prettier-eslint": "^17.1.1",
"safe-stable-stringify": "^2.5.0",
"sass": "^1.30.0",
"ts-json-schema-generator": "^2.9.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.8.3",
"typescript-eslint": "^8.62.1"
},
"packageManager": "yarn@4.12.0"
}