-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 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
42
43
44
{
"name": "@ScienceOctopus/octopus-api",
"version": "0.0.1",
"description": "",
"main": "main.js",
"scripts": {
"dev": "nodemon -e js main.js",
"start": "node main.js",
"lint": "eslint .",
"migrate": "node migrations/001-insert-initial-data.js",
"migrate:covid": "node migrations/002-insert-covid-data.js",
"generate-docs": "apidoc -i routes/ -o docs/",
"postinstall": "echo \"Generating docs...\" && npm run --silent generate-docs"
},
"keywords": [],
"author": "Science Octopus",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.573.0",
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-type": "^12.4.0",
"formidable": "^1.2.1",
"html-minifier": "^4.0.0",
"html-pdf": "^2.2.0",
"lodash": "^4.17.15",
"mammoth": "^1.4.9",
"markdown-it": "^10.0.0",
"mongodb": "^3.3.4",
"nodemon": "^2.0.2",
"pdf-html-extract": "^1.1.0",
"pdftohtmljs": "^0.5.3",
"read-chunk": "^3.2.0",
"request": "^2.88.0"
},
"devDependencies": {
"apidoc": "^0.18.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
}
}