-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.26 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
{
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"coding-standards-check/eslint": "eslint --ext .js ./assets",
"coding-standards-check/markdownlint": "markdownlint --ignore LICENSE.md '*.md' docs/",
"coding-standards-check": "npm run coding-standards-check/eslint && npm run coding-standards-check/markdownlint",
"coding-standards-apply/eslint": "eslint --ext .js --fix ./assets",
"coding-standards-apply/markdownlint": "markdownlint --ignore LICENSE.md '*.md' docs/ --fix",
"coding-standards-apply": "npm run coding-standards-apply/eslint && npm run coding-standards-apply/markdownlint"
},
"dependencies": {
"@babel/core": "^7.23.9",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@hotwired/stimulus": "^3.0.0",
"@symfony/stimulus-bridge": "^3.2.0",
"@symfony/stimulus-bundle": "file:vendor/symfony/stimulus-bundle/assets",
"@symfony/webpack-encore": "^4.0.0",
"@tailwindcss/forms": "^0.5.3",
"autoprefixer": "^10.4.12",
"babel-eslint": "^10.1.0",
"choices.js": "^10.2.0",
"core-js": "^3.23.0",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"regenerator-runtime": "^0.13.9",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"tailwindcss": "^3.1.8",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-notifier": "^1.15.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.6",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.1.3",
"markdownlint-cli": "^0.39.0"
}
}