-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.5 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
110
111
{
"name": "acme-ds-drupal",
"version": "0.0.1",
"description": "Storybook development + Webpack Build + Drupal 9 theme",
"keywords": [
"component library",
"design system",
"drupal",
"pattern library",
"storybook",
"styleguide"
],
"private": true,
"workspaces": [
"acme-ds-gatsby"
],
"author": "Acme <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.17",
"@babel/preset-env": "^7.12.1",
"add-attributes-twig-extension": "^0.1.0",
"autoprefixer": "^10.0.2",
"babel-loader": "^8.2.1",
"babel-preset-minify": "^0.5.0",
"bem-twig-extension": "^0.1.1",
"breakpoint-sass": "^2.7.1",
"clean-webpack-plugin": "^3.0.0",
"concurrently": "^5.3.0",
"css-loader": "^5.0.1",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-webpack-plugin": "^2.5.2",
"file-loader": "^6.2.0",
"fs": "^0.0.1-security",
"glob": "^7.1.4",
"imagemin-webpack-plugin": "^2.4.2",
"js-yaml-loader": "^1.2.2",
"mini-css-extract-plugin": "^1.3.0",
"node-sass-glob-importer": "^5.3.2",
"normalize.css": "^8.0.1",
"postcss": "^8.1.7",
"postcss-custom-properties": "^11.0.0",
"postcss-loader": "^4.0.4",
"ramda": "^0.27.1",
"sass": "^1.43.2",
"sass-loader": "^10.1.0",
"style-loader": "^2.0.0",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.1.1",
"svg-sprite-loader": "^5.0.0",
"twig": "^1.15.3",
"twig-drupal-filters": "^3.1.0",
"twig-loader": "https://github.com/fourkitchens/twig-loader",
"webpack": "4.44.2",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.3.0"
},
"scripts": {
"commit": "git-cz",
"lint": "eslint ./components",
"a11y": "npm run build-storybook && ./scripts/a11y.js -r",
"storybook": "start-storybook --ci -s ./dist,./images -p 6006",
"build-storybook": "npm run build && build-storybook -s ./dist,./images -o .out",
"webpack": "webpack --watch --config ./webpack/webpack.dev.js",
"build": "webpack --config ./webpack/webpack.prod.js",
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"",
"test": "jest --coverage",
"twatch": "jest --no-coverage --watch --verbose",
"coverage": "yarn test && open-cli .coverage/lcov-report/index.html",
"format": "prettier --write \"**/*.{js,yml,scss,md}\"",
"lint-staged": "lint-staged",
"postinstall": "npx patch-package",
"chromatic": "npx chromatic"
},
"devDependencies": {
"@storybook/addon-a11y": "^6.1.18",
"@storybook/addon-essentials": "^6.1.18",
"@storybook/addon-links": "^6.1.18",
"@storybook/addons": "^6.1.18",
"@storybook/html": "^6.1.18",
"babel-jest": "^26.6.3",
"chalk": "^4.0.0",
"chromatic": "^6.0.4",
"commitizen": "^4.2.2",
"core-js": "3.9.0",
"cz-conventional-changelog": "3.3.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.5.1",
"open-cli": "^6.0.1",
"pa11y": "^5.3.0",
"prettier": "2.2.1",
"twig-testing-library": "^1.1.1",
"yaml": "^1.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}