This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.84 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
{
"name": "storybook-addons",
"description": "Storybook addons",
"scripts": {
"lerna": "lerna",
"bootstrap": "lerna bootstrap --hoist",
"clean": "lerna clean",
"build": "lerna exec --stream -- tsc --project ./tsconfig.json",
"build:clean": "lerna exec --stream --parallel -- rm -rf dist tsconfig.tsbuildinfo",
"check": "lerna exec --stream -- tsc --noEmit --composite false --project ./tsconfig.json",
"test": "lerna run test --stream --parallel",
"demo": "lerna run start --stream --parallel",
"build:demo": "lerna run build --stream --parallel",
"demo:clean": "lerna run clean --stream --parallel",
"postinstall": "npm run bootstrap && npm run build",
"eslint": "eslint --ext .js,.jsx,.ts,.tsx . --cache --cache-location ./node_modules/.cache/eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hcz/storybook-addons.git"
},
"author": "Serge Osipov <[email protected]>",
"bugs": {
"url": "https://github.com/hcz/storybook-addons/issues"
},
"homepage": "https://github.com/hcz/storybook-addons#readme",
"dependencies": {
"@storybook/addons": "^5.3.12",
"@storybook/api": "^5.3.12",
"@storybook/components": "^5.3.12",
"lerna": "^3.20.2",
"storybook-themepack": "file:addons/storybook-themepack"
},
"devDependencies": {
"@storybook/react": "^5.3.12",
"@storybook/theming": "^5.3.12",
"@types/lodash": "^4.14.160",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"eslint": "^7.12.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.2.3",
"rimraf": "^3.0.2",
"typescript": "^3.7.5"
},
"peerDependencies": {
"react": "^16.8.0"
},
"husky": {
"hooks": {
"pre-commit": "npm run eslint && npm run check && npm run demo:clean && npm run build:demo && git add ./examples/**/demo"
}
}
}