-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.76 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.76 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
{
"name": "stocksfafo",
"version": "1.0.0",
"description": "Real-time Indian Stock Market Dashboard with Authentication and Trading",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "cd backend && npm run dev",
"dev:frontend": "cd frontend && npm start",
"build": "echo 'Docker handles build process'",
"start": "node backend/dist/server.js",
"test": "npm run test:backend && npm run test:frontend",
"test:backend": "cd backend && npm test",
"test:frontend": "cd frontend && npm test",
"lint": "npm run lint:backend && npm run lint:frontend",
"lint:backend": "cd backend && npm run lint",
"lint:frontend": "cd frontend && npm run lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"install:all": "npm install && cd backend && npm install && cd ../frontend && npm install",
"docker:build": "docker build -t stocksfafo .",
"docker:run": "docker run -p 5000:5000 -e NODE_ENV=production stocksfafo",
"docker:test": "docker build -t stocksfafo:test . && docker run --rm stocksfafo:test npm test"
},
"devDependencies": {
"@types/node": "^20.0.0",
"concurrently": "^8.2.2",
"prettier": "^3.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/stocksfafo.git"
},
"keywords": [
"stock-market",
"real-time",
"trading",
"dashboard",
"typescript",
"react",
"nodejs",
"websocket"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"recharts": "2.12.7"
}
}