forked from platformsh-templates/drupal10
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·67 lines (67 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "varbase-project",
"description": "Varbase project template for platform.sh is a composer starterkit for new projects.",
"license": "GPL-2.0",
"private": true,
"engines": {
"yarn": ">= 1.6",
"node": ">= 18.0"
},
"scripts": {
"storybook:dev": "npx storybook dev --disable-telemetry -p 6006 -h 'varbase.local'",
"storybook:build": "npx storybook build --disable-telemetry --output-dir storybook",
"phpcs": "phpcs --standard=./.phpcs.xml .",
"phpcbf": "phpcbf --standard=./.phpcs.xml .",
"lint:yaml": "node ./node_modules/eslint/bin/eslint.js --config=.eslintrc.json --ext .yml .",
"lint:js": "node ./node_modules/eslint/bin/eslint.js --config=.eslintrc.json --ext .js .",
"lint:css": "npx stylelint --config=.stylelintrc.json"
},
"resolutions": {
"webpack": "^5"
},
"dependencies": {
"webpack": "~5",
"webpack-cli": "~5",
"platformsh-config": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "~7",
"@storybook/cli": "~7",
"@storybook/addon-essentials": "~7",
"@storybook/addon-links": "~7",
"@storybook/blocks": "~7",
"@storybook/react": "~7",
"@storybook/server": "~7",
"@storybook/components": "~7",
"@storybook/core-events": "~7",
"@storybook/manager-api": "~7",
"@storybook/preview-api": "~7",
"@storybook/types": "~7",
"@storybook/server-webpack5": "~7",
"@storybook/builder-webpack5": "~7",
"@storybook/theming": "~7",
"@storybook/addon-a11y": "~7",
"@lullabot/storybook-drupal-addon": "~2",
"storybook-addon-root-attribute": "~1",
"storybook-addon-rtl-direction": "^0.0.19",
"fork-ts-checker-webpack-plugin": "~8 || ~9",
"eslint": "~8",
"eslint-config-airbnb": "~19.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jquery": "^1.5.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-yml": "^0.10.0",
"prettier": "^2.1.2",
"stylelint": "~16",
"stylelint-checkstyle-formatter": "^0.1.2",
"stylelint-order": "~6.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0"
}
}