-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.74 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
{
"name": "@somoscuatro/sc-starter-theme",
"description": "A custom starter theme for WordPress projects.",
"version": "1.6.0",
"author": {
"name": "somoscuatro",
"email": "tech@somoscuatro.es",
"url": "https://somoscuatro.es"
},
"scripts": {
"dev": "npx mix watch",
"dev:storybook": "storybook dev -p 6006",
"build": "npx mix build",
"build:prod": "npx mix --production",
"build:storybook": "storybook build",
"run:chromatic": "npx chromatic --project-token=$CHROMATIC_PROJECT_TOKEN --build-script-name=build:storybook",
"deploy:storybook": "npx dotenv-run-script run:chromatic",
"lint": "pnpm run lint:php & pnpm run lint:css & pnpm run lint:js",
"lint:php": "composer lint",
"lint:css": "stylelint --quiet-deprecation-warnings ./**/*.css",
"lint:js": "eslint ./**/*.js",
"lint-fix": "pnpm run lint-fix:php & pnpm run lint-fix:js & pnpm run lint-fix:css",
"lint-fix:php": "composer lint:fix",
"lint-fix:css": "prettier --write ./**/*.css",
"lint-fix:js": "eslint ./**/*.js --fix && prettier --write ./**/*.js",
"sniff": "pnpm run sniff:php",
"sniff:php": "composer sniff",
"deploy": "bash .github/scripts/bump-version.sh && git push origin main && git push origin --tags && bash .github/scripts/create-release-notes.sh && gh release create \"$(<.github/.version)\" --title \"$(<.github/.version)\" --notes \"$(<.github/.release-notes)\"",
"postinstall": "husky"
},
"lint-staged": {
"./**/*.{css,js}": [
"prettier --write"
]
},
"dependencies": {
"autoprefixer": "^10.4.19",
"laravel-mix": "^6.0.49",
"postcss": "^8.4.38",
"postcss-extend": "^1.0.5",
"postcss-import": "^16.1.0",
"postcss-nesting": "^12.1.0",
"tailwindcss": "^3.4.1",
"webpack": "^5.91.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@faker-js/faker": "^8.4.1",
"@storybook/addon-essentials": "^8.0.5",
"@storybook/addon-webpack5-compiler-swc": "^1.0.2",
"@storybook/blocks": "^8.0.5",
"@storybook/html-webpack5": "^8.0.5",
"@storybook/theming": "^8.0.5",
"@wordpress/eslint-plugin": "^17.11.0",
"@wordpress/prettier-config": "^3.11.0",
"chromatic": "^11.3.0",
"dotenv-run-script": "^0.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"husky-init": "^8.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"storybook": "^8.0.5",
"stylelint": "^16.3.0",
"stylelint-config-recommended": "^14.0.0",
"ts-loader": "^9.5.1",
"twigjs-loader": "^1.0.3",
"typescript": "^5.4.4"
},
"packageManager": "pnpm@9.1.4+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0"
}