-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.12 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
{
"name": "mlo.io",
"private": true,
"scripts": {
"start": "concurrently -k --restart-tries 3 --restart-after 3000 -p [{name}] -n webpack,jekyll -c yellow.bold,cyan.bold npm:watch:webpack npm:watch:jekyll",
"build": "encore dev",
"watch:webpack": "encore dev --watch",
"watch:jekyll": "bundle exec jekyll serve --livereload --drafts --open",
"prod": "encore production",
"clean": "rm -rf dist && rm -rf src/assets",
"optimize": "imageoptim -a src/images",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"dependencies": {
"@symfony/webpack-encore": "^5.0.0",
"@tailwindcss/typography": "^0.5.15",
"autoprefixer": "^10.4.20",
"file-loader": "^6.2.0",
"lodash": "^4.17.21",
"postcss": "^8.4.47",
"postcss-loader": "^8.1.1",
"tailwindcss": "^3.4.13",
"tailwindcss-skip-link": "^1.0.1"
},
"devDependencies": {
"concurrently": "^9.0.1",
"imageoptim-cli": "^3.1.9",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
]
}