forked from marketcalls/openalgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.23 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.23 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
{
"name": "openalgo",
"version": "1.0.0",
"type": "module",
"description": "OpenAlgo is an open-source Flask-based Python application designed to bridge the gap between traders and major trading platforms such as Amibroker, Tradingview, Excel, and Google Spreadsheets. With a focus on simplifying algotrading, OpenAlgo facilitates easy integration, automation, and execution of trading strategies, providing a user-friendly interface to enhance trading performance.",
"main": "index.js",
"scripts": {
"build:css": "cross-env NODE_ENV=production postcss src/css/styles.css -o static/css/main.css",
"watch:css": "postcss src/css/styles.css -o static/css/main.css --watch",
"build": "cross-env NODE_ENV=production postcss src/css/styles.css -o static/css/main.css",
"dev": "postcss src/css/styles.css -o static/css/main.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"cssnano": "^7.1.2",
"daisyui": "^5.5.14",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-nesting": "^13.0.1",
"tailwindcss": "^4.1.14"
},
"dependencies": {
"chart.js": "^4.5.1"
}
}