-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.01 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
{
"name": "pandoc-api",
"version": "1.0.0",
"description": "A simple RESTful server for converting documents using pandoc",
"main": "lib/index.js",
"repository": "[email protected]:alphakevin/pandoc-api.git",
"author": "alphakevin <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc -p ./src",
"watch": "tsc -p ./src -w",
"nodemon": "nodemon --delay 1000ms -i src lib/index.js start",
"start": "node lib/index start",
"cli": "node lib/index"
},
"dependencies": {
"async-middleware": "^1.2.1",
"content-disposition": "^0.5.3",
"express": "^4.17.1",
"lodash": "^4.17.15",
"mime-types": "^2.1.24",
"multer": "^1.4.2",
"pad": "^3.2.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/content-disposition": "^0.5.2",
"@types/express": "^4.17.0",
"@types/lodash": "^4.14.136",
"@types/mime-types": "^2.1.0",
"@types/multer": "^1.3.8",
"@types/uuid": "^3.4.5",
"nodemon": "^1.19.1",
"typescript": "^3.5.3"
}
}