-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "dashboard-example",
"version": "2.0.0",
"description": "SQU^RE DOFF - Financial Trading Dashboard with real-time data visualization",
"main": "index.html",
"scripts": {
"start": "python -m http.server 8000",
"start:node": "npx http-server -p 8000",
"minify": "npm run minify:css && npm run minify:js",
"minify:css": "npx clean-css-cli styles/*.css -o styles/style.min.css",
"minify:js": "npx terser scripts/*.js -o scripts/bundle.min.js --compress --mangle",
"optimize:images": "echo 'Image optimization: Use online tools like squoosh.app or imagemin'",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "npx eslint scripts/*.js",
"lint:css": "npx stylelint styles/*.css",
"test": "echo 'Tests to be implemented'",
"build": "npm run lint && npm run minify",
"dev": "npm start"
},
"repository": {
"type": "git",
"url": "https://github.com/billyndroid/dashboard-example.git"
},
"keywords": [
"dashboard",
"trading",
"finance",
"analytics",
"charts",
"real-time"
],
"author": "SQU^RE DOFF Team",
"license": "MIT",
"devDependencies": {
"clean-css-cli": "^5.6.2",
"eslint": "^8.50.0",
"http-server": "^14.1.1",
"stylelint": "^15.10.3",
"terser": "^5.20.0"
},
"dependencies": {},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"not IE 11"
]
}