-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.81 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
104
105
106
107
108
109
{
"name": "emulsify-drupal",
"version": "1.0.0",
"description": "Storybook development + Webpack Build + Drupal 8 theme",
"keywords": [
"component library",
"design system",
"drupal",
"pattern library",
"storybook",
"styleguide"
],
"author": "Four Kitchens <[email protected]>",
"license": "ISC",
"scripts": {
"a11y": "npm run storybook-build && ./scripts/a11y.js -r",
"build": "webpack --config ./webpack/webpack.prod.js",
"commit": "git-cz",
"coverage": "yarn test && open-cli .coverage/lcov-report/index.html",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"format": "npm run lint-fix; npm run prettier-fix",
"lint": "npm run lint-js; npm run lint-styles",
"lint-fix": "npm run lint-js -- --fix; npm run lint-styles -- --fix",
"lint-js": "eslint --no-error-on-unmatched-pattern ./components",
"lint-staged": "lint-staged",
"lint-styles": "stylelint './components/**/*.scss'",
"postinstall": "npx patch-package",
"prepare": "husky install",
"prettier": "prettier --ignore-unknown \"./components/**/*.{js,yml,scss,md}\"",
"prettier-fix": "prettier --write --ignore-unknown \"./components**/*.{js,yml,scss,md}\"",
"storybook": "start-storybook --ci -s ./dist,./images -p 6006",
"storybook-build": "npm run build && build-storybook -s ./dist,./images -o .out",
"storybook-deploy": "storybook-to-ghpages -o .out",
"test": "jest --coverage",
"twatch": "jest --no-coverage --watch --verbose",
"webpack": "webpack --watch --config ./webpack/webpack.dev.js"
},
"dependencies": {
"add-attributes-twig-extension": "^0.1.0",
"bem-twig-extension": "^0.1.1",
"normalize.css": "^8.0.1",
"regenerator-runtime": "^0.13.9",
"twig-drupal-filters": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.12.17",
"@storybook/addon-a11y": "^6.1.18",
"@storybook/addon-actions": "^6.3.8",
"@storybook/addon-essentials": "^6.3.8",
"@storybook/addon-links": "^6.3.8",
"@storybook/html": "^6.3.8",
"@storybook/storybook-deployer": "^2.8.10",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.2",
"babel-preset-minify": "^0.5.0",
"breakpoint-sass": "^2.7.1",
"chalk": "^4.0.0",
"clean-webpack-plugin": "^4.0.0",
"commitizen": "^4.2.2",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"husky": "^7.0.0",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^26.6.3",
"js-yaml": "^3.14.1",
"js-yaml-loader": "^1.2.2",
"lint-staged": "^11.2.6",
"mini-css-extract-plugin": "^1.6.2",
"node-sass-glob-importer": "^5.3.2",
"open-cli": "^6.0.1",
"pa11y": "^5.3.0",
"postcss": "^8.1.7",
"postcss-loader": "^4.3.0",
"ramda": "^0.27.1",
"sass": "^1.42.1",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^22.0.0",
"stylelint-prettier": "^1.2.0",
"stylelint-webpack-plugin": "^2.1.1",
"svg-sprite-loader": "^6.0.11",
"tailwindcss": "^3.1.8",
"twig-loader": "https://github.com/fourkitchens/twig-loader",
"twig-testing-library": "^1.1.1",
"webpack": "4.46.0",
"webpack-cli": "^4.8.0",
"webpack-merge": "^5.8.0",
"yaml": "^1.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}