-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.64 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
{
"name": "visuel-bib",
"description": "Templates pour le visuel des Bibliothèques de l'Université de Montréal.",
"version": "1.4.0",
"private": true,
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"parcel-namer-custom": {
"libcal.css$": "LibCal/custom-css.css",
"custom-js-code.js$": "LibCal/custom-js.[hash].js",
"custom-js-code-with-megamenu.js$": "LibCal/custom-js.[hash].js"
},
"scripts": {
"dev": "npm-run-all rimraf:dev fetch --parallel dev:parcel serve:dev",
"dev:parcel": "parcel watch --no-cache --public-url / --dist-dir dev src/**/*.html",
"build": "npm-run-all rimraf:build fetch build:parcel fix-build",
"build:parcel": "parcel build --no-cache --no-source-maps --dist-dir build src/**/*.html",
"rimraf:dev": "rimraf dev/",
"rimraf:build": "rimraf build/",
"serve:build": "serve build/",
"serve:dev": "serve dev/",
"fetch": "node lib/fetch-megamenu.js",
"fix-build": "node lib/fix-file-hash.js"
},
"dependencies": {
"handlebars": "^4.7.7",
"jquery": "^3.7.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@futureportal/parcel-transformer-package-version": "^1.0.0",
"@parcel/optimizer-data-url": "^2.9.1",
"@parcel/transformer-inline-string": "^2.9.1",
"@parcel/transformer-sass": "^2.9.1",
"@partiellkorrekt/parcel-transformer-handlebars": "^1.0.3",
"axios": "^1.4.0",
"jsdom": "^22.1.0",
"parcel": "^2.9.1",
"parcel-namer-custom": "^0.2.0",
"postcss": "^8.4.24",
"postcss-import": "^15.1.0",
"postcss-url": "^10.1.3",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"serve": "^14.2.0"
}
}