-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"license": "UNLICENSED",
"private": true,
"version": "0.1.6",
"engines": {
"node": ">=20.x"
},
"browserslist": [
"> 0.5%",
"not ie 11",
"not op_mini all"
],
"scripts": {
"prepare": "husky install",
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:record": "cypress run --record",
"format": "npm run format:js && npm run format:css",
"format:css": "prettier --write 'assets/**/*.{css,pcss}'",
"format:js": "prettier --write 'assets/**/*.{js,jsx}'",
"lint": "npm run lint:js && npm run lint:css",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx,.vue --fix",
"lint:css": "stylelint 'assets/**/*.{pcss,css}' --fix",
"release": "release-it"
},
"lint-staged": {
"{src,tests}/**/*.php": [
"vendor/bin/php-cs-fixer fix --diff --config .php-cs-fixer.dist.php --no-ansi",
"vendor/bin/phpstan analyse --no-ansi --no-progress"
],
"*.{js,jsx,ts,tsx,vue}": [
"prettier --write",
"npm run lint:js --"
],
"*.{pcss,css}": [
"prettier --write",
"npm run lint:css --"
],
"*.{json,md}": [
"prettier --write"
],
"*.twig": [
"bin/console lint:twig"
],
"*.{yml,yaml}": [
"prettier --write",
"bin/console lint:yaml"
]
},
"release-it": {
"github": {
"release": true
}
},
"dependencies": {
"tailwind-css-extensions": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.17.12",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.17.12",
"@hotwired/stimulus": "^3.0.0",
"@symfony/stimulus-bridge": "^3.1.0",
"@symfony/ux-live-component": "file:./.symfony/ux-live-component",
"@symfony/webpack-encore": "^1.7.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.0",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.7",
"core-js": "^3.22.4",
"cypress": "^9.6.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.1",
"postcss": "^8.4.14",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.2",
"prettier-plugin-twig-melody": "^0.4.6",
"regenerator-runtime": "^0.13.2",
"release-it": "^14.14.2",
"stylelint": "^14.8.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard": "^25.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"tailwindcss": "^3.0.24",
"webpack-notifier": "^1.6.0"
}
}