-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 805 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 805 Bytes
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
{
"name": "stocks-predictor",
"version": "0.1.0",
"private": true,
"scripts": {
"pip_install": "FLASK_DEBUG=1 pip3 install -r requirements.txt",
"server": "FLASK_DEBUG=1 python3 -m flask --app server/api run -p 5328",
"client": "next dev",
"dev": "concurrently \"yarn server\" \"yarn client\"",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"next": "14.2.5",
"react": "^18",
"react-dom": "^18",
"styled-components": "^6.1.12",
"swr": "^2.2.5"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"concurrently": "^8.2.2",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"typescript": "^5"
},
"packageManager": "yarn@4.3.1"
}