-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 KB
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
{
"name": "dbkreduxapi",
"version": "1.2.1",
"description": "API to retrieve articles and other content from the DBK site.",
"apidoc": {
"name": "The Diamondback API",
"title": "API - The Diamondback",
"url": "api.dbknews.com"
},
"scripts": {
"lint": "eslint --fix src/**/*.js",
"dev": "cross-env NODE_ENV=development nodemon --inspect ./src/server.js",
"start": "cross-env NODE_ENV=production nodemon ./src/server.js"
},
"repository": "git+https://github.com/The-Diamondback-Lab/dbkreduxapi.git",
"author": "The DBK Lab",
"license": "ISC",
"bugs": {
"url": "https://github.com/The-Diamondback-Lab/dbkreduxapi/issues"
},
"dependencies": {
"bunyan": "^1.8.12",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"dotenv": "^7.0.0",
"express": "^4.17.1",
"jquery": "^3.5.0",
"mysql": "^2.17.1",
"node-fetch": "^2.6.1",
"redis": "^2.8.0",
"redis-errors": "^1.2.0",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"nodemon": "^2.0.2"
}
}