-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
67 lines (67 loc) · 1.73 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
{
"name": "@storybook/presets",
"version": "1.0.0",
"private": true,
"description": "Storybook presets for quick configuration of Storybook for specific use cases.",
"license": "MIT",
"bugs": {
"url": "https://github.com/storybookjs/presets/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/presets.git"
},
"engines": {
"node": ">=10",
"yarn": "^1.17.0"
},
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"lint": "yarn lint-code && yarn lint-style -c",
"lint-code": "eslint '{examples,packages}/**/*.{js,ts,tsx}'",
"lint-style": "yarn prettier '{examples,packages}/**/*.{js,ts,tsx,css,html,json,md,mdx,scss,yml}'",
"test": "jest --passWithNoTests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,html,json,md,mdx,scss,yml}": [
"prettier --write"
]
},
"resolutions": {
"babel-loader": "8.1.0",
"webpack": "4.44.2"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.2.3",
"jest": "26.6.0",
"lint-staged": "^10.0.8",
"prettier": "^2.3.2",
"shelljs": "^0.8.2",
"typescript": "^4.1.3",
"webpack": "4.44.2"
}
}