forked from HenryQW/mercury-parser-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 872 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": "mercury-parser-api",
"version": "1.0.0",
"description": "🐋 A Dockerized drop-in replacement for the Mercury Parser API.",
"author": "HenryQW <[email protected]>",
"license": "(Apache 2.0 OR MIT)",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.js\" --write"
},
"engines": {
"node": ">=6"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"dependencies": {
"@postlight/parser": "^2.2.3",
"body-parser": "1.20.2",
"express": "4.18.2",
"helmet": "7.1.0",
"morgan": "1.10.0"
},
"devDependencies": {
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"nodemon": "3.0.1",
"prettier": "3.1.0"
}
}