-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.29 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
{
"devDependencies": {
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo": "^7.0.1",
"@symfony/stimulus-bridge": "^3.2.0",
"@symfony/ux-dropzone": "file:vendor/symfony/ux-dropzone/assets",
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
"@symfony/webpack-encore": "^4.5.0",
"core-js": "^3.33.3",
"file-loader": "^6.2.0",
"husky": ">=6",
"lint-staged": ">=15.1.0",
"prettier": "^3.1.0",
"regenerator-runtime": "^0.14.0",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,css,scss,md}": "prettier --write",
"*.php": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.1",
"@tabler/core": "^1.0.0-beta20"
}
}