-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "lumen",
"version": "1.0.0",
"description": "Lumen",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"seed": "nodemon ./db/Seed.js",
"seed:dev": "nodemon ./db/Seed.js",
"start-node": "node server.js",
"start:dev": "nodemon server.js",
"seed-and-start-node": "node ./db/seed.js && node server.js",
"start-seed": "node ./db/Seed.js && node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AGuyNamedDJ/Lumen.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/AGuyNamedDJ/Lumen/issues"
},
"homepage": "https://github.com/AGuyNamedDJ/Lumen#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.633.0",
"aws-sdk": "^2.1678.0",
"axios": "^1.7.4",
"bcrypt": "^5.1.1",
"bottleneck": "^2.19.5",
"cheerio": "^1.0.0",
"concurrently": "^8.2.2",
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fast-csv": "^5.0.1",
"finnhub": "^1.2.18",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.5.45",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"pg": "^8.12.0",
"puppeteer": "^23.1.0",
"validator": "^13.12.0",
"winston": "^3.14.2",
"ws": "^8.18.0",
"yahoo-finance": "^0.3.8",
"yahoo-finance2": "^2.11.3"
},
"devDependencies": {
"nodemon": "^3.1.4"
}
}