-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.28 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.28 KB
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
{
"name": "drupal-ch",
"version": "1.0.0",
"license": "MIT",
"private": true,
"scripts": {
"build-library": "cross-env NODE_ENV=production webpack --config storybook/webpack.config.js --mode production",
"build-storybook": "build-storybook -c storybook/.storybook -o storybook/build",
"storybook": "start-storybook -c storybook/.storybook",
"serve-storybook": "storybook-server -c storybook/.storybook -s storybook/build",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack-dev": "drush webpack:serve --docker --dev-server-host=cli",
"lint:css": "stylelint --ignore-path storybook/.eslintignore \"storybook/**/*.css\"",
"lint:css:fix": "npm run lint:css --fix",
"lint:js": "eslint --ignore-path storybook/.eslintignore storybook/ --ext ts --ext js",
"lint:js:fix": "npm run lint:js --fix",
"lint:fix": "npm run lint:css:fix && npm run lint:js:fix",
"preinstall": "npx npm-force-resolutions",
"postinstall": "patch-package --patch-dir=patches/node"
},
"dependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.12.1",
"@storybook/addon-a11y": "^6.0.28",
"@storybook/addon-actions": "^6.0.28",
"@storybook/addon-console": "^1.2.2",
"@storybook/addon-viewport": "^6.0.28",
"@storybook/html": "^6.0.28",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@webcomponents/webcomponentsjs": "^2.5.0",
"ansi-regex": "^3.0.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.1",
"core-js": "^3.7.0",
"cross-env": "^7.0.2",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"file-loader": "^6.2.0",
"lazysizes": "^5.2.2",
"lit-element": "^2.4.0",
"lit-html": "^1.3.0",
"mini-css-extract-plugin": "^1.3.0",
"patch-package": "^6.2.2",
"postcss": "^8.1.7",
"postcss-easy-import": "git+https://github.com/univers-agency/postcss-easy-import.git",
"postcss-loader": "^4.0.4",
"postcss-mixins": "^7.0.3",
"postcss-nested": "^5.0.5",
"postcss-preset-env": "^5.3.0",
"postcss-url": "^10.1.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"regenerator-runtime": "^0.13.7",
"resolve-url-loader": "^4.0.0",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-webpack-plugin": "^1.2.3",
"swiper": "^6.3.5",
"twig": "1.15.3",
"twig-drupal-filters": "^3.1.2",
"twigjs-loader": "^1.0.2",
"typescript": "^4.0.5",
"url-loader": "^4.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^4.1.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.2.0"
},
"resolutions": {
"react": "16.14.0",
"react-dom": "16.14.0"
},
"devDependencies": {
"husky": "^4.3.0"
},
"husky": {
"hooks": {
}
}
}