-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.42 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
{
"private": true,
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@fortawesome/fontawesome-free": "^6.6.0",
"@popperjs/core": "^2.11.6",
"@sentry/browser": "^8.38.0",
"@tabler/core": "^1.0.0-beta21",
"bloodhound-js": "^1.2.3",
"bootstrap": "^5.3.3",
"bs-custom-file-input": "^1.3.4",
"daterangepicker": "^3.1.0",
"fancybox": "^3.0.0",
"jquery": "3.7.1",
"jquery-cookiebar": "^1.0.5",
"lazysizes": "^5.3.2",
"lodash": "^4.17.21",
"moment": "2.30.1",
"morris.js": "^0.5.0",
"purgecss-webpack-plugin": "^6.0.0",
"raphael": "^2.2.7",
"select2": "^4.0",
"select2-bootstrap-5-theme": "^1.3.0",
"summernote": "^0.9.1",
"sweetalert2": "^11.14.5",
"typeahead-addresspicker": "^1.0.1",
"typeahead.js": "0.10.*"
},
"resolutions": {
"bootstrap": "^5.3.3",
"moment": "2.24.0",
"strip-ansi": "^6.0.0",
"string-width": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@eslint/js": "^9.12.0",
"@symfony/webpack-encore": "^5.0.1",
"core-js": "^3.39.0",
"es6-promise": "^4.2.6",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.2.0",
"file-loader": "^6.0.0",
"glob-all": "^3.3.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"imports-loader": "^5.0.0",
"lint-staged": ">=15.2.10",
"moment-locales-webpack-plugin": "^1.1.2",
"node-sass-tilde-importer": "^1.0.2",
"prettier": "^3.3.3",
"regenerator-runtime": "^0.14.1",
"sass": "1.64.*",
"sass-loader": "^16.0.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-notifier": "^1.15.0"
},
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production",
"prepare": "husky"
},
"lint-staged": {
"*.{scss,md,yaml,yml}": [
"prettier --write"
],
"*.{js,jsx}": "eslint --fix",
"*.php": "./vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php",
"*.twig": "vendor/bin/twig-cs-fixer lint --fix --config=.twig-cs-fixer.php"
}
}