-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 923 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
37
38
{
"name": "nyc-restaurant-inspection-records",
"version": "1.0.0",
"description": "App that finds health inspection records of restaurants in New York City via a Socrata Open Data API",
"main": "index.js",
"scripts": {
"start": "node server/index.js",
"prod-start": "nodemon server/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"NYC",
"New York City",
"restaurants",
"health inspections",
"open data",
"Socrata",
"API"
],
"author": "Gary Pang",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"hbs": "^4.0.4",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"redis": "^2.8.0",
"response-time": "^2.3.2"
},
"devDependencies": {
"artillery": "^1.6.0-28",
"nodemon": "^1.19.1"
}
}