-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "drive-pdf-processor",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "nodemon src/index.ts",
"server": "node lib/index.js",
"test": "NODE_ENV=test jest",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"engines": {
"node": "22"
},
"main": "lib/index.js",
"dependencies": {
"@google-cloud/tasks": "^6.2.1",
"debug": "^4.4.1",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"googleapis": "^171.4.0",
"pdf-parse": "^2.4.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/pdf-parse": "^1.1.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.8.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"private": true
}