-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.92 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "astro-7508",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"clean": "del dist",
"ncu": "ncu",
"ncu-upgrade": "ncu --upgrade --filterVersion '^*'",
"postinstall": "npm-run-all vendor-del vendor-cpy",
"vendor-cpy": "copy-files-from-to",
"vendor-del": "del public/assets/vendor"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"astro": "^3.2.2",
"bootstrap": "5.3.0-alpha1",
"bootstrap-icons": "^1.11.1",
"bootstrap-table": "^1.22.1",
"choices.js": "^10.2.0",
"flag-icons": "^6.11.1",
"flatpickr": "^4.6.13",
"fuse.js": "^6.6.2",
"jarallax": "^2.1.4",
"jquery": "^3.7.1",
"nouislider": "^15.7.1",
"sticky-js": "^1.3.0",
"tiny-slider": "^2.9.4"
},
"devDependencies": {
"@types/jquery": "^3.5.20",
"autoprefixer": "^10.4.16",
"copy-files-from-to": "^3.9.0",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"fast-glob": "^3.3.1",
"npm-check-updates": "^16.14.4",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.68.0"
},
"copyFiles": [
{
"from": [
"node_modules/bootstrap/dist/js/bootstrap.bundle.js",
"node_modules/bootstrap/dist/js/bootstrap.bundle.js.map",
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js",
"node_modules/bootstrap/dist/js/bootstrap.bundle.min.js.map"
],
"to": "public/assets/vendor/bootstrap",
"toFlat": true
},
{
"from": [
"node_modules/bootstrap-table/dist/bootstrap-table.js",
"node_modules/bootstrap-table/dist/bootstrap-table.min.js",
"node_modules/bootstrap-table/dist/extensions/custom-view/bootstrap-table-custom-view.js",
"node_modules/bootstrap-table/dist/extensions/custom-view/bootstrap-table-custom-view.min.js"
],
"to": "public/assets/vendor/bootstrap-table",
"toFlat": true
},
{
"from": [
"node_modules/choices.js/public/assets/scripts/choices.js",
"node_modules/choices.js/public/assets/scripts/choices.min.js"
],
"to": "public/assets/vendor/choices.js",
"toFlat": true
},
{
"from": [
"node_modules/flatpickr/dist/flatpickr.js",
"node_modules/flatpickr/dist/flatpickr.min.js"
],
"to": "public/assets/vendor/flatpickr",
"toFlat": true
},
{
"from": [
"node_modules/fuse.js/dist/fuse.basic.js",
"node_modules/fuse.js/dist/fuse.basic.min.js"
],
"to": "public/assets/vendor/fuse",
"toFlat": true
},
{
"from": [
"node_modules/jarallax/dist/jarallax.js",
"node_modules/jarallax/dist/jarallax.js.map",
"node_modules/jarallax/dist/jarallax.min.js",
"node_modules/jarallax/dist/jarallax.min.js.map"
],
"to": "public/assets/vendor/jarallax",
"toFlat": true
},
{
"from": [
"node_modules/jquery/dist/jquery.slim.js",
"node_modules/jquery/dist/jquery.slim.min.js",
"node_modules/jquery/dist/jquery.slim.min.map"
],
"to": "public/assets/vendor/jquery",
"toFlat": true
},
{
"from": [
"node_modules/nouislider/dist/nouislider.js",
"node_modules/nouislider/dist/nouislider.min.js"
],
"to": "public/assets/vendor/nouislider",
"toFlat": true
},
{
"from": [
"node_modules/sticky-js/dist/sticky.min.js"
],
"to": "public/assets/vendor/sticky-js",
"toFlat": true
},
{
"from": [
"node_modules/tiny-slider/dist/tiny-slider.js"
],
"to": "public/assets/vendor/tiny-slider",
"toFlat": true
},
{
"from": "node_modules/tiny-slider/dist/min/tiny-slider.js",
"to": "public/assets/vendor/tiny-slider/tiny-slider.min.js"
}
]
}