-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.61 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
{
"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": "Evan Willhite <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@storybook/addon-a11y": "6.1.20",
"@storybook/addon-actions": "6.1.20",
"@storybook/addon-links": "6.1.20",
"@storybook/addons": "6.1.20",
"@storybook/react": "^6.5.12",
"@storybook/storybook-deployer": "^2.8.7",
"add-attributes-twig-extension": "^0.1.0",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.1.0",
"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.2.0",
"css-loader": "^4.3.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.6",
"file-loader": "^6.1.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": "^0.11.2",
"node-sass": "^4.14.1",
"node-sass-glob-importer": "^5.3.2",
"normalize.css": "^8.0.1",
"postcss-custom-properties": "^9.1.1",
"postcss-loader": "^4.0.1",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.1",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-standard": "^20.0.0",
"stylelint-webpack-plugin": "^2.0.0",
"svg-sprite-loader": "^5.0.0",
"twig": "^1.15.2",
"twig-drupal-filters": "^3.1.0",
"twig-loader": "https://github.com/fourkitchens/twig-loader",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.11",
"webpack-merge": "^5.1.4"
},
"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": "build-storybook -s ./dist,./images -o .out",
"deploy-storybook": "storybook-to-ghpages -o .out",
"webpack": "webpack --watch --config ./webpack/webpack.dev.js --display-error-details",
"build": "webpack --config ./webpack/webpack.prod.js --display-error-details",
"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"
},
"devDependencies": {
"@babel/preset-react": "^7.10.1",
"@testing-library/react": "^10.2.1",
"babel-jest": "^26.3.0",
"chalk": "^4.0.0",
"commitizen": "^4.2.5",
"core-js": "3",
"cz-conventional-changelog": "3.3.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.11",
"open-cli": "^6.0.1",
"pa11y": "^5.3.0",
"prettier": "2.1.1",
"react-test-renderer": "^16.13.1",
"twig-testing-library": "^1.1.1",
"yaml": "^1.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}