-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2 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
57
58
59
60
61
62
{
"name": "stock-portfolio-tracker-ts",
"version": "1.0.0",
"description": "This repository contains a basic implementation of a stock portfolio tracker backend using Express.js and TypeScript. It includes features for user authentication, adding and removing stocks from the portfolio, real-time stock data retrieval using a financial data API, and tracking portfolio performance over time.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon dist/app.js",
"start:dev": "nodemon",
"start:Prod": "node dist/app.js",
"build": "tsc",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaseMax/stock-portfolio-tracker-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BaseMax/stock-portfolio-tracker-ts/issues"
},
"homepage": "https://github.com/BaseMax/stock-portfolio-tracker-ts#readme",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/express-validator": "^3.0.0",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.4",
"@types/jsonwebtoken": "^9.0.2",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.5",
"@types/node": "^20.5.9",
"@types/supertest": "^2.0.12",
"@types/winston": "^2.4.4",
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/passport": "^1.0.12",
"@types/passport-jwt": "^3.0.9",
"bcrypt": "^5.1.1",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-jwt": "^4.0.1",
"reflect-metadata": "^0.1.13",
"ts-jest": "^29.1.1",
"tsyringe": "^4.8.0",
"winston": "^3.10.0"
}
}