-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
67 lines (67 loc) · 2.06 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": "react-storybook-addon-chapters",
"version": "3.2.0",
"description": "React Storybook Chapters addon allows showcasing of multiple components within a story by breaking it down into smaller categories (chapters) and subcategories (sections) for more organizational goodness.",
"repository": {
"type": "git",
"url": "https://github.com/Checkfront/react-storybook-addon-chapters.git"
},
"license": "MIT",
"scripts": {
"prepublish": ". ./.scripts/prepublish.sh",
"lint": "eslint src",
"lintfix": "eslint src --fix",
"testonly": "mocha --require .scripts/mocha_runner src/**/tests/**/*.js",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"start": "npm run storybook",
"storybook": "start-storybook -p 9011",
"publish-storybook": "bash .scripts/publish_storybook.sh"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.5.5",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"create-react-class": "^15.7.0",
"enzyme": "^3.10.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.22.2",
"eslint-plugin-jsx-a11y": "^6.4.3",
"eslint-plugin-react": "^7.21.3",
"eslint-plugin-react-hooks": "^1.7.0",
"git-url-parse": "^11.1.2",
"jsdom": "^15.1.1",
"mocha": "^6.2.2",
"prop-types": "^15.7.2",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"sinon": "^7.3.2",
"webpack": "^4.38.0"
},
"peerDependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@emotion/styled": "^10.0.23",
"@storybook/addon-info": "^5.3.21",
"@storybook/components": "^5.3.21",
"@storybook/react": "^5.3.21",
"core-js": "^3.21.1",
"marksy": "2.0.1",
"react": "^16.8.6"
},
"main": "dist/index.js",
"engines": {
"npm": "^3.0.0"
}
}