-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "storybook-router",
"description": "A storybook decorator that allows you to use routing-aware components in your stories.",
"license": "MIT",
"author": "Gianni Valdambrini",
"repository": {
"type": "git",
"url": "https://github.com/gvaldambrini/storybook-router.git"
},
"bugs": {
"url": "https://github.com/gvaldambrini/storybook-router/issues"
},
"homepage": "https://github.com/gvaldambrini/storybook-router",
"keywords": [
"storybook",
"react",
"react-router",
"vue",
"vue-router"
],
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"lerna": "^3.13.1",
"prettier": "1.18.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"lint": "eslint packages/* examples/*",
"bootstrap": "lerna bootstrap",
"check-versions": "npm outdated; lerna exec --concurrency=1 --bail=false -- npm outdated",
"build-react": "lerna exec --scope storybook-react-router -- npm run build",
"build-vue": "lerna exec --scope storybook-vue-router -- npm run build",
"storybook-react-examples": "lerna exec --scope storybook-react-router-examples -- npm run storybook",
"storybook-vue-examples": "lerna exec --scope storybook-vue-router-examples -- npm run storybook"
},
"private": true
}