-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 2.2 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
{
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@eslint/js": "^9.3.0",
"@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",
"@symfony/webpack-encore": "^4.6.1",
"babel-loader": "^9.1.3",
"babel-plugin-prismjs": "^2.1.0",
"eslint": "^9.3.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.7.0",
"eslint-plugin-promise": "^6.1.1",
"markdownlint-cli": "^0.31.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"prismjs": "^1.29.0",
"tailwindcss": "^3.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"scripts": {
"coding-standards-check/eslint": "yarn eslint './web/themes/custom/ai_launchpad/**/*.js'",
"coding-standards-check/prettier": "yarn prettier ./web/themes/custom/ai_launchpad/**/ --check",
"coding-standards-check/markdownlint": "yarn markdownlint --ignore '**/node_modules/**' --ignore '**/vendor/**' '*.md' 'web/modules/custom/**/*.md' 'documentation/*.md'",
"coding-standards-check": "yarn coding-standards-check/markdownlint && yarn coding-standards-check/prettier && yarn coding-standards-check/eslint",
"coding-standards-apply/eslint": "eslint './web/themes/custom/ai_launchpad/**/*.js' --fix",
"coding-standards-apply/prettier": "yarn prettier ./web/themes/custom/ai_launchpad/**/ --write",
"coding-standards-apply/markdownlint": "yarn markdownlint --fix '*.md' 'web/modules/custom/**/*.md' 'documentation/*.md'",
"coding-standards-apply": "yarn coding-standards-apply/markdownlint && yarn coding-standards-apply/prettier && yarn coding-standards-apply/eslint",
"build": "yarn encore production --progress && yarn tailwindcss -i ./web/themes/custom/ai_launchpad/styles.css -o ./web/themes/custom/ai_launchpad/build/ai_launchpad.css --minify",
"watch": "yarn encore dev --watch & yarn tailwindcss -i ./web/themes/custom/ai_launchpad/styles.css -o ./web/themes/custom/ai_launchpad/build/ai_launchpad.css --watch"
}
}