-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.76 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
{
"name": "webpack-mpa-next",
"version": "4.0.0",
"description": "Multi page app setup with webpack",
"keywords": [
"MPA",
"Multi page",
"Webpack setup",
"Webpack config",
"Webpack boilerplate",
"Multiple pages application",
"Multiple pages application setup",
"Multiple pages application boilerplate"
],
"homepage": "https://atanas.info/portfolio/open-source/webpack-mpa-next",
"bugs": {
"url": "https://github.com/scriptex/webpack-mpa-next/issues",
"email": "hi@atanas.info"
},
"license": "MIT",
"author": "Atanas Atanasov <hi@atanas.info> (https://atanas.info)",
"funding": "https://github.com/sponsors/scriptex",
"main": "assets/scripts/main.js",
"style": "assets/styles/main.css",
"repository": {
"type": "git",
"url": "github:scriptex/webpack-mpa-next"
},
"scripts": {
"build": "webpack --mode=production",
"start": "webpack --watch --mode=development",
"html": "php index.php > index.html",
"critical": "node critical.mjs",
"rm-html": "rm index.html",
"pwa": "create-pwa --icon=\"./assets/images/favicon/icon.png\" --launch=\"./assets/images/favicon/launch.png\"",
"prod": "yarn build && yarn html && yarn critical && yarn rm-html",
"lint": "yarn lint:js && yarn lint:css",
"lint:js": "eslint",
"lint:css": "stylelint assets/styles/**/*.css"
},
"dependencies": {
"itcss": "2.1.0"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/preset-env": "7.26.0",
"autoprefixer": "10.4.20",
"babel-loader": "9.2.1",
"browser-sync": "3.0.3",
"browser-sync-webpack-plugin": "2.3.0",
"browserslist": "4.24.2",
"clean-webpack-plugin": "4.0.0",
"create-pwa": "2.7.0",
"critical": "7.2.1",
"css-loader": "7.1.2",
"cssnano": "7.0.6",
"eslint": "9.15.0",
"eslint-config-recommended": "4.1.0",
"eslint-plugin-compat": "6.0.1",
"mini-css-extract-plugin": "2.9.2",
"postcss": "8.4.49",
"postcss-calc": "10.0.2",
"postcss-cli": "11.0.0",
"postcss-color-mod-function": "4.1.1",
"postcss-custom-media": "11.0.5",
"postcss-each": "1.1.0",
"postcss-each-variables": "0.3.0",
"postcss-easy-import": "4.0.0",
"postcss-extend": "1.0.5",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-for": "2.1.1",
"postcss-loader": "8.1.1",
"postcss-merge-rules": "7.0.4",
"postcss-mixins": "11.0.3",
"postcss-nested": "7.0.2",
"postcss-normalize": "13.0.1",
"postcss-url": "10.1.3",
"postcss-utilities": "0.8.4",
"postcss-watch-folder": "2.0.0",
"stylelint": "16.10.0",
"stylelint-config-recommended": "14.0.1",
"stylelint-no-unsupported-browser-features": "8.0.2",
"svg-symbol-sprite": "1.5.2",
"webpack": "5.96.1",
"webpack-cli": "5.1.4",
"webpack-shell-plugin-next": "2.3.2",
"webpack-spritesmith": "1.1.0"
},
"bin": {
"wmpan": "./bin/cli.js"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}