-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.5 KB
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
{
"name": "storybook-annotations-api",
"version": "1.1.0",
"description": "Annotations Api for Storybook",
"license": "MIT",
"main": "./dist/index.js",
"author": "Igor Davydkin",
"scripts": {
"babel": "babel src -d dist",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix",
"storybook": "start-storybook -c ./example/.storybook -p 9898",
"prepublish": "npm run lint && npm run babel"
},
"dependencies": {
"@storybook/react": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"@storybook/addon-knobs": "^3.2.0",
"@storybook/addon-info": "^3.2.0",
"@storybook/addon-notes": "^3.2.0",
"@storybook/addons": "^3.2.0",
"@storybook/react": "^3.2.0",
"prettier": "^1.5.3",
"react": "^15.6.1",
"react-dom": "^15.6.1"
},
"peerDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4"
}
}