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
|
{
"name": "sudomsg",
"version": "0.5.0",
"description": "Sudomsg Website",
"scripts": {
"build": "tsc --build",
"start": "node ."
},
"main": "dist/server/server.js",
"type": "module",
"author": "Marc Pervaz Boocha",
"license": "ISC",
"dependencies": {
"@sindresorhus/slugify": "^2.1.1",
"express": "^5.0.0-beta.1",
"highlight.js": "^11.7.0",
"http-errors": "^2.0.0",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"sharp": "^0.31.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@tsconfig/node-lts-strictest-esm": "^18.12.1",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/mime-types": "^2.1.1",
"@types/morgan": "^1.9.4",
"@types/node": "^18.13.0",
"@types/serve-static": "^1.15.0",
"@types/serviceworker": "^0.0.62",
"@types/sharp": "^0.31.1",
"@typescript/lib-dom": "npm:@types/web@^0.0.91",
"typescript": "^4.9.5"
}
}
|