-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "jamstockex-api",
"version": "1.0.0",
"description": "This project uses NodeJS, ExpressJS and Serverless framework to serve the scraped data from [Jamaica Stock Exchange](https://www.jamstockex.com/) website that is stored in a MongoDB Cloud instance.",
"main": "api.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"api:dev": "nodemon api.js localhost 5000",
"start": "node api.js localhost 5000"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/sdclarkelab/jamstock/jamstockex-api.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/sdclarkelab/jamstock/jamstockex-api/issues"
},
"homepage": "https://gitlab.com/sdclarkelab/jamstock/jamstockex-api#readme",
"dependencies": {
"body-parser": "^1.19.0",
"camelcase-keys": "^6.2.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"hpp": "^0.2.3",
"http-status": "^1.5.0",
"lodash": "^4.17.21",
"moment": "^2.27.0",
"mongoose": "^5.8.1",
"mongoose-lean-virtuals": "^0.8.0",
"morgan": "^1.10.0",
"redis": "^3.1.1",
"statuses": "^2.0.1"
},
"devDependencies": {
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.1.1"
},
"engines": {
"node": "16.13.x"
}
}