-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "addon-screen-reader",
"version": "1.8.6",
"description": "A Screen Reader Storybook addon",
"keywords": [
"storybook",
"addons",
"accessibility",
"a11y",
"screen-reader"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": "git://github.com/vlaraort/addon-screen-reader.git",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"module": "dist/register.js",
"main": "dist/register.js",
"author": "Víctor Lara",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@storybook/addons": "^6.1.21",
"@storybook/components": "^6.1.21",
"query-selector-shadow-dom": "^0.8.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-toggle-component": "^3.0.8",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1"
},
"scripts": {
"build": "babel ./src --out-dir ./dist",
"test": "echo 'no tests specified'",
"lint": "eslint ./",
"lint:fix": "npm run lint -- --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}