-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "pdf-outliner",
"version": "1.0.1",
"description": "Convert text from PDF to outline, making impossible to edit it",
"homepage": "https://github.com/thyares/outlinePDF",
"main": "index.js",
"scripts": {
"deploy:prod": "yarn install --production --frozen-lockfile",
"prod": "node src",
"debug": "whoami; df -h /efs; chmod -R 777 /efs; ls -lah /efs/*; echo $(date) >> /efs/date; cat /efs/date; node src ",
"dev": "yarn install && nodemon src",
"lint": "eslint --ext js,jsx,ts,tsx .",
"lint:format": "prettier --write '**/*.{ts,tsx,js,jsx,json}'"
},
"keywords": [
"api",
"convert",
"outline",
"pdf",
"gosthscript",
"poopler-utils"
],
"author": "Charles Santos <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.21.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"husky": "^9.1.6"
},
"repository": "https://github.com/thyarles/pdf-outliner.git",
"private": true
}