-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1011 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": "stockup-server",
"version": "1.0.0",
"scripts": {
"client": "cd client && npm start",
"server": "nodemon server.js",
"dev": "concurrently --kill-others-on-fail \"yarn server\" \"yarn client\"",
"start": "node server.js",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"dependencies": {
"axios": "latest",
"body-parser": "^1.18.3",
"cheerio": "latest",
"cloudscraper": "^4.1.2",
"dotenv": "^8.2.0",
"express": "latest",
"path": "^0.12.7",
"request": "^2.88.0"
},
"devDependencies": {
"concurrently": "^4.1.1"
},
"description": "A stock application utilizing APIs and web scraping for gathering stock news and data",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/zakattack9/stockup.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zakattack9/stockup/issues"
},
"homepage": "https://zakattack9.github.io/stockup/"
}