-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 873 Bytes
/
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
{
"name": "learn-pdf",
"version": "1.0.0",
"description": "Helps learning pdf one step at a time.",
"main": "src/index.js",
"scripts": {
"start": "node build/index.js",
"build": "tsc -p .",
"dev": "nodemon src/index.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/knex": "^0.16.1",
"@types/koa": "^2.13.5",
"@types/koa__router": "^12.0.0",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-cors": "^0.0.2",
"@types/node": "^18.15.3",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@koa/router": "^12.0.0",
"debug": "^4.3.4",
"knex": "^2.3.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-cors": "^0.0.16",
"pdf-parse": "^1.1.1",
"pdfreader": "^3.0.0"
}
}