-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
104 lines (104 loc) · 3.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "storybook-addon-jsx",
"version": "7.3.14",
"description": "Display the JSX of the story",
"repository": "storybookjs/addon-jsx",
"license": "MIT",
"author": "Andrew Lisowski <[email protected]>",
"main": "lib/index.js",
"scripts": {
"prebuild": "rimraf lib",
"build": "babel src --out-dir lib --ignore spec.js,test.js --extensions .ts --extensions .js --extensions .tsx && npm run build:types",
"build-storybook": "build-storybook -c ./example/.storybook",
"build:dev": "babel -w src --out-dir lib --ignore spec.js,test.js --extensions .ts --extensions .js --extensions .tsx",
"build:types": "tsc -p tsconfig.json",
"lint": "eslint --cache src --ext ts --ext tsx",
"netlify": "build-storybook -c ./example/.storybook",
"prepare": "yarn build",
"release": "auto shipit",
"storybook": "start-storybook -p 9009 -c ./example/.storybook",
"test": "yarn test:all",
"test:all": "jest src",
"test:dev": "jest src --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true
},
"jest": {
"testURL": "http://localhost"
},
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"js-beautify": "^1.8.8",
"react-element-to-jsx-string": "^14.3.1",
"storybook-pretty-props": "^1.0.3"
},
"devDependencies": {
"@auto-it/all-contributors": "^9.34.1",
"@auto-it/first-time-contributor": "^9.34.1",
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@design-systems/eslint-config": "^1.4.15",
"@storybook/addon-options": "^5.0.3",
"@storybook/addon-storyshots": "^5.0.3",
"@storybook/addons": "^5.2.5",
"@storybook/channels": "^5.2.5",
"@storybook/components": "^5.2.5",
"@storybook/core-events": "^5.2.5",
"@storybook/react": "^5.0.3",
"@storybook/theming": "^5.2.5",
"@types/js-beautify": "^1.8.0",
"@types/react": "^16.8.8",
"@types/storybook__react": "^4.0.1",
"all-contributors-cli": "^6.14.2",
"auto": "^9.34.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.5.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"husky": "^3.0.9",
"jest": "^24.5.0",
"lint-staged": "^9.4.2",
"prettier": "^1.15.2",
"prop-types": "^15.6.2",
"react": "^16.11.0",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^16.11.0",
"react-test-renderer": "^16.11.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "^3.0.0",
"storybook-addon-react-docgen": "^1.2.32",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"@storybook/addons": ">= 5.x",
"@storybook/channels": ">= 5.x",
"@storybook/components": ">= 5.x",
"@storybook/core-events": ">= 5.x",
"@storybook/theming": ">= 5.x",
"react": "^16.2.0 || ^17.0.0",
"react-dom": "^16.2.0 || ^17.0.0"
},
"auto": {
"plugins": [
"npm",
"released",
"first-time-contributor",
"all-contributors"
]
}
}