-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.28 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
68
69
70
71
72
73
74
75
{
"name": "storybook-addon-prettier-source",
"version": "2.1.2",
"description": "Storybook addon to show inline story source code formatted using prettier and a syntax highlighter",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"compile": "rollup -c",
"lint": "eslint ./src ./test jest.**.js index.js",
"lint:fix": "eslint --fix ./src ./test jest.**.js index.js",
"test": "jest --coverage --config jest.config.full-run.js",
"test:watch": "jest --watch --config jest.config.base.js",
"test:ci": "jest --coverage --config jest.config.ci.js"
},
"husky": {
"hooks": {
"pre-commit": "node ./scripts/pre-commit-hook.js",
"post-commit": "node ./scripts/post-commit-hook.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/chinchiheather/storybook-addon-prettier-source.git"
},
"author": {
"name": "Heather Roberts",
"email": "[email protected]"
},
"keywords": [
"storybook",
"storybook-addon",
"prettier"
],
"dependencies": {
"prettier": "^1.14.2",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-element-to-jsx-string": "^14.0.1",
"react-syntax-highlighter": "^8.0.1"
},
"peerDependencies": {
"@storybook/react": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.0",
"eslint-plugin-unicorn": "^5.0.0",
"husky": "^1.0.0-rc.13",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.5.0",
"jest-runner-eslint": "^0.6.0",
"react-dom": "^16.4.2",
"react-test-renderer": "^16.4.2",
"rollup": "^0.64.1",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.5",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.2",
"shelljs": "^0.8.2"
}
}