mirror of
https://github.com/symfony/recipes.git
synced 2026-09-12 23:56:25 +03:00
Under current yarn/npm versioning rules, the new 0.20.* versions weren't installable by default see also: https://docs.npmjs.com/misc/semver#caret-ranges-123-025-004 Its pretty much the same as composer versioning
15 lines
340 B
JSON
15 lines
340 B
JSON
{
|
|
"devDependencies": {
|
|
"@symfony/webpack-encore": "^0.20.0",
|
|
"webpack-notifier": "^1.6.0"
|
|
},
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev-server": "encore dev-server",
|
|
"dev": "encore dev",
|
|
"watch": "encore dev --watch",
|
|
"build": "encore production"
|
|
}
|
|
}
|