-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.23 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
{
"name": "mindlogger-pdf-server",
"version": "1.0.1",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "tsc && node ./dist/src/app.js",
"dev": "nodemon",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"hummus-recipe": "^2.0.1",
"markdown-it": "^13.0.1",
"markdown-it-abbr": "^1.0.4",
"markdown-it-container": "^3.0.0",
"markdown-it-deflist": "^2.1.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-footnote": "^3.0.3",
"markdown-it-html5-embed": "^1.0.0",
"markdown-it-images-preview": "^1.0.1",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"mime-types": "^2.1.35",
"moment-timezone": "^0.5.34",
"node-fetch": "2.7.0",
"pdf-lib": "^1.17.1",
"puppeteer": "^20.9.0",
"sqlite3": "^5.0.9",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/hummus-recipe": "^1.8.8",
"@types/jest": "^29.5.0",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-container": "^2.0.5",
"@types/markdown-it-emoji": "^2.0.2",
"@types/markdown-it-footnote": "^3.0.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.6.11",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "~8.33.0",
"eslint-config-airbnb-base": "~15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "~2.27.5",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.5.0",
"nodemon": "^3.1.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.0",
"typescript": "^5.4.5"
}
}