-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"license": "MIT",
"private": true,
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"prepare": "husky"
},
"lint-staged": {
"*.{js,scss,md}": "prettier --write",
"*.php": "php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"*.twig": "vendor/bin/twig-cs-fixer lint --fix --config=.twig-cs-fixer.php"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@hotwired/stimulus": "^3.0.0",
"@hotwired/turbo": "^8.0.12",
"@symfony/stimulus-bridge": "^3.2.0",
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
"@symfony/webpack-encore": "^5.0.1",
"core-js": "^3.39.0",
"file-loader": "^6.0.0",
"husky": "^9.1.7",
"lint-staged": ">=15.3.0",
"prettier": "^3.4.2",
"prop-types": "^15.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "1.75.*",
"sass-loader": "^16.0.4",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-notifier": "^1.14.1"
},
"dependencies": {
"@tabler/core": "^1.0.0-beta21"
}
}