-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
63 lines (63 loc) · 2.93 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
{
"name": "Light-Particle",
"author": "Sitdisch",
"version": "4.0.0",
"description": "Website-Boilerplate | Combo of Webpack, Bootstrap... to develop/build a cross-browser & -device, light-theme blog + portfolio website with exchangeable WebGL header",
"repository": {
"type": "git",
"url": "https://github.com/mythemeway/light-particle"
},
"license": "MIT",
"scripts": {
"start": "npm run -s start:log && nodemon",
"start:log": "node -e 'console.log(\"[\\x1b[90mnodemon\\x1b[0m]: Starting `\\x1b[36mwatch\\x1b[0m` of \\x1b[35mwebpack.config.js\\x1b[0m, \\x1b[35mpackage.json\\x1b[0m and \\x1b[35mwatcher.config.mjs\\x1b[0m...\\n[\\x1b[90mnodemon\\x1b[0m]: Starting `\\x1b[36mwebpack-dev-server\\x1b[0m`...\")'",
"build": "npm run -s build:cmd",
"build:cmd": "(npm run -s build:log:webp) && (webpack --mode=production) && (npm run -s build:log:htmlminifier) && (npm run -s build:htmlminifier) && (npm run -s build:log:finish)",
"build:log:webp": "node -e 'console.log(\"[\\x1b[90mwebpack\\x1b[0m]: Starting `\\x1b[36mproduction-mode\\x1b[0m`...\")'",
"build:log:htmlminifier": "node -e 'console.log(\"[\\x1b[90mwebpack\\x1b[0m]: `\\x1b[36mproduction-mode\\x1b[0m` \\x1b[1;32m[finished]\\x1b[0m\\n[\\x1b[90mHTMLMinifier\\x1b[0m]: Starting `\\x1b[36mminifying-process\\x1b[0m`...\")'",
"build:htmlminifier": "html-minifier-terser --input-dir ./docs --output-dir ./docs --file-ext html --remove-comments --collapse-whitespace --conservative-collapse --remove-optional-tags --remove-redundant-attributes --remove-script-type-attributes --minify-css true --minify-js true --collapse-boolean-attributes",
"build:log:finish": "node -e 'console.log(\"[\\x1b[90mHTMLMinifier\\x1b[0m]: `\\x1b[36mminifying-process\\x1b[0m` \\x1b[1;32m[finished]\\x1b[0m\")'"
},
"nodemonConfig": {
"quiet": true,
"legacyWatch": true,
"exec": "webpack serve --mode=development",
"watch": [
"webpack.config.js",
"package.json",
"watcher.config.mjs"
],
"events": {
"restart": "node -e 'console.log(\"[\\x1b[90mnodemon\\x1b[0m]: Restarting `\\x1b[36mwebpack-dev-server\\x1b[0m`...\")'"
}
},
"dependencies": {
"@babel/core": "7.21.0",
"@babel/preset-env": "7.20.2",
"@fortawesome/fontawesome-free": "5.15.4",
"@squoosh/cli": "0.7.3",
"babel-loader": "9.1.2",
"bootstrap": "5.1.3",
"chokidar": "3.5.3",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "4.2.2",
"devicon": "2.15.1",
"fs-extra": "11.1.0",
"glslx": "0.3.0",
"html-minifier-terser": "7.1.0",
"ignore-emit-webpack-plugin": "2.0.6",
"imagemin": "8.0.1",
"imagemin-svgo": "10.0.1",
"jquery": "3.6.3",
"mini-css-extract-plugin": "2.7.2",
"nodemon": "2.0.20",
"prepr": "1.2.4",
"sass": "1.55.0",
"sass-loader": "13.2.0",
"sweet-scroll": "4.0.0",
"twgl.js": "5.3.0",
"webpack": "5.75.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1"
}
}