-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "md-html-conv-api",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "Lisen Pasha",
"license": "MIT",
"description": "",
"dependencies": {
"cheerio": "^1.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"html-pdf": "^3.0.1",
"html-validator": "^6.0.1",
"markdown-it": "^14.1.0",
"marked": "^15.0.2",
"morgan": "^1.10.0",
"node-libcurl": "^4.0.0",
"sanitize-html": "^2.13.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"validator": "^13.12.0",
"xss-clean": "^0.1.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/html-pdf": "^3.0.3",
"@types/html-validator": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/markdown-it": "^14.1.2",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.1",
"@types/node-fetch": "^2.6.12",
"@types/sanitize-html": "^2.13.0",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"@types/validator": "^13.12.2",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}