-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 717 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 717 Bytes
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
{
"name": "search-parsing-api",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"start": "node src/app",
"test": "mocha",
"lint": "eslint .",
"docker:build": "docker build -t search-parsing-api .",
"docker:run": "docker run -p 80:80 search-parsing-api"
},
"author": "fultonth@gmail.com",
"license": "ISC",
"dependencies": {
"body-parser": "1.18.3",
"config": "3.0.1",
"express": "4.16.4",
"morgan": "1.9.1"
},
"devDependencies": {
"chai": "4.2.0",
"chai-http": "4.2.1",
"eslint": "5.12.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.1",
"mocha": "5.2.0",
"prettier": "1.15.3"
}
}