-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.75 KB
/
package.json
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
83
84
85
{
"name": "dashboard",
"description": "Na ovoce dashboard",
"version": "0.0.1",
"license": "MIT",
"author": "Ondřej Nejedlý",
"engines": {
"node": ">=v20.15.0"
},
"packageManager": "[email protected]",
"devDependencies": {
"frontend-dependencies": "^2.0.0",
"npm-watch": "^0.11.0",
"sass": "^1.77.7"
},
"watch": {
"dev": {
"patterns": [
"dashboard/resources/styles"
],
"extensions": "sass"
}
},
"scripts": {
"postinstall": "frontend-dependencies",
"watch": "npm-watch dev",
"dev": "sass dashboard/resources/styles/dashboard.sass dashboard/static/css/dashboard.css --embed-source-map",
"build": "sass dashboard/resources/styles/dashboard.sass dashboard/static/css/dashboard.css --style=compressed"
},
"dependencies": {
"@geoman-io/leaflet-geoman-free": "^2.17.0",
"bulma": "^0.9.4",
"echarts": "^5.5.1",
"esri-leaflet": "^2.5.3",
"esri-leaflet-geocoder": "^2.3.4",
"font-awesome": "^4.7.0",
"htmx.org": "^1.9.12",
"leaflet": "^1.9.4"
},
"frontendDependencies": {
"packages": {
"bulma": {
"version": "^0.9.4",
"src": "sass/*",
"target": "dashboard/resources/vendor",
"namespaced": true
},
"echarts": {
"version": "^5.5.1",
"src": "dist/echarts.min.js",
"target": "dashboard/static/js"
},
"font-awesome": {
"version": "^4.7.0",
"src": "{fonts,css}",
"target": "dashboard/static/fa"
},
"htmx.org": {
"version": "^1.9.12",
"src": "dist/htmx.min.js",
"target": "dashboard/static/js"
},
"leaflet": {
"version": "^1.9.4",
"src": "{dist/leaflet.js,dist/leaflet.css}",
"target": "dashboard/static/leaflet"
},
"@geoman-io/leaflet-geoman-free": {
"version": "^2.17.0",
"src": "{dist/leaflet-geoman.min.js,dist/leaflet-geoman.css}",
"target": "dashboard/static/leaflet"
},
"esri-leaflet": {
"version": "^2.5.3",
"src": "dist/esri-leaflet.js",
"target": "dashboard/static/leaflet"
},
"esri-leaflet-geocoder": {
"version": "^2.3.4",
"src": "{dist/esri-leaflet-geocoder.css,dist/esri-leaflet-geocoder.js,dist/img}",
"target": "dashboard/static/leaflet"
}
}
}
}