-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.27 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.27 KB
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
63
64
65
66
67
68
{
"name": "stoxly",
"version": "1.0.0",
"description": "Stock Trading Platform for DSE",
"main": "dist/index.js",
"author": "Shanid Sajjatuz Islam <shanidsajjatuz@gmail.com>",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "tsc-watch --noClear --onSuccess \"npm run start:dev\"",
"dev:frontend": "cd frontend && npm run dev",
"start:dev": "node --max-old-space-size=4096 --enable-source-maps dist/app.js",
"build": "npm ci && npx tsc && cd frontend && npm ci && npm run build",
"start": "node dist/app.js",
"postinstall": "cd frontend && npm install",
"render-build": "npm ci && npx tsc && cd frontend && npm ci && npm run build"
},
"keywords": ["stock-trading", "dse", "bangladesh", "portfolio-management", "stock-market", "trading-platform"],
"license": "ISC",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/bcryptjs": "^2.4.6",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^24.5.2",
"@types/pdfkit": "^0.17.3",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.21",
"axios": "^1.6.4",
"axios-retry": "^4.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"chart.js": "^4.5.0",
"cheerio": "^1.0.0-rc.12",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.18.1",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"pdfkit": "^0.17.2",
"postcss": "^8.5.6",
"react": "^19.1.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.1",
"react-router-dom": "^7.9.1",
"reflect-metadata": "^0.2.1",
"routing-controllers": "^0.10.4",
"tailwindcss": "^3.3.6",
"typedi": "^0.10.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.3",
"concurrently": "^9.2.1",
"rimraf": "^5.0.10",
"tsc-watch": "^6.0.4"
}
}