-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.04 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
{
"name": "augur",
"version": "2.0.0",
"description": "Energy price forecasting platform — data collection, ML prediction, and interactive dashboard",
"private": true,
"scripts": {
"dev": "hugo server -D",
"build": "python decrypt_data_cached.py && hugo --minify",
"build:force": "python decrypt_data_cached.py --force && hugo --minify",
"build:legacy": "python decrypt_data.py && hugo --minify",
"clean": "rimraf public resources",
"clean:windows": "if exist public rmdir /s /q public & if exist resources rmdir /s /q resources & del /q static\\data\\*.json 2>nul",
"test": "bash scripts/test_optimization.sh || scripts\\test_optimization.bat"
},
"dependencies": {},
"devDependencies": {
"rimraf": "^5.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/ducroq/augur"
},
"keywords": [
"energy",
"forecasting",
"machine-learning",
"xgboost",
"dashboard",
"netherlands",
"electricity-prices",
"online-learning"
],
"author": "",
"license": "MIT"
}