-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.57 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
{
"name": "arbitra-pulse",
"version": "1.0.0",
"description": "stock sentiment analysis api",
"repository": "https://github.com/0xTxbi/arbitra-pulse.git",
"author": "0xTxbi <techiejossy@gmail.com>",
"license": "Apache",
"private": true,
"type": "commonjs",
"workspaces": [
"authentication-service",
"stock-info-service",
"new-service",
"sentiment-analysis-service"
],
"scripts": {
"typeorm": "typeorm-ts-node-commonjs",
"auth-start": "nodemon --watch . --ext ts --exec ts-node authentication-service/src/index.ts",
"stock-info-start": "nodemon --watch . --ext ts --exec ts-node stock-info-service/src/index.ts",
"news-service-start": "nodemon --watch . --ext ts --exec ts-node news-service/src/index.ts",
"sentiment-service-start": "nodemon --watch . --ext ts --exec ts-node sentiment-analysis-service/src/index.ts",
"instantiate": "yarn auth-start & yarn stock-info-start & yarn news-service-start & yarn sentiment-service-start"
},
"devDependencies": {
"nodemon": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"nx": "17.2.3"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.3",
"axios": "^1.6.2",
"bcrypt": "^5.1.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.2",
"natural": "^6.10.4",
"pg": "^8.11.3",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.10.4",
"typedi": "^0.10.0",
"typeorm": "^0.3.17"
}
}