-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.19 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gentelella",
"version": "4.1.1",
"type": "module",
"description": "Gentelella v4 — free admin template. 60 pages, 20 chart variants, fully interactive inbox & kanban, live theme generator, component playground, PWA-ready. Vite 8, vanilla JS, no Bootstrap, no jQuery.",
"scripts": {
"dev": "vite --clearScreen false",
"build": "NODE_ENV=production vite build",
"build:dev": "NODE_ENV=development vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"analyze": "npm run build && open dist/stats.html",
"new": "node scripts/new-page.mjs",
"screenshots": "node scripts/screenshots.mjs",
"smoke": "node scripts/smoke.mjs",
"deploy:preview": "bash scripts/deploy-preview.sh",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ColorlibHQ/gentelella.git"
},
"keywords": [
"admin",
"dashboard",
"template",
"html",
"css",
"scss",
"vanilla-js",
"echarts",
"datatables",
"vite",
"modern",
"pwa",
"dark-mode",
"command-palette",
"theme-generator"
],
"author": "Aigars Silkalns",
"license": "MIT",
"main": "src/main-v4.js",
"types": "types/gentelella.d.ts",
"exports": {
".": "./src/main-v4.js",
"./v4/*": "./src/v4/*.js",
"./scss/*": "./src/scss/*",
"./types": "./types/gentelella.d.ts",
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"production",
"types",
"vite.config.js"
],
"bugs": {
"url": "https://github.com/ColorlibHQ/gentelella/issues"
},
"homepage": "https://github.com/ColorlibHQ/gentelella#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"playwright": "^1.62.1",
"prettier": "^3.9.6",
"rollup-plugin-visualizer": "^7.0.1",
"sass": "^1.102.0",
"terser": "^5.49.2",
"vite": "^8.2.0"
},
"dependencies": {
"datatables.net": "^3.0.1",
"echarts": "^6.1.0",
"leaflet": "^1.9.4"
}
}