-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.75 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
{
"name": "@zeplin/storybook-inspector",
"version": "0.3.0",
"description": "Utility functions to get storybook data for Zeplin's client apps",
"main": "dist/index.js",
"scripts": {
"lint": "eslint .",
"prebuild": "rm -rf dist",
"build": "webpack",
"watch": "webpack --watch",
"install:husky": "husky install",
"prepare": "npm-run-all install:husky build",
"deploy-to-appcenter": "appcenter distribute release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeplin/storybook-inspector.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zeplin/storybook-inspector/issues"
},
"homepage": "https://github.com/zeplin/storybook-inspector#readme",
"peerDependencies": {
"prettier": "^2.4.1",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"vue": "^2.6.14 || ^3.0.0"
},
"dependencies": {
"lit-html": "^2.0.0-rc.3",
"query-string": "^7.0.1",
"react-element-to-jsx-string": "^15.0.0"
},
"devDependencies": {
"@storybook/csf": "^0.1.1",
"@storybook/manager-api": "^8.2.2",
"@storybook/preview-api": "^8.2.2",
"@storybook/types": "^8.2.2",
"@types/prettier": "^2.4.1",
"@types/react": "^18.0.27",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"@zeplin/eslint-config": "^2.3.2",
"appcenter-cli": "^2.10.2",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.5.0",
"husky": "^7.0.2",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.56.1",
"webpack-cli": "^4.8.0",
"webpack-node-externals": "^3.0.0"
},
"lint-staged": {
"*.ts": "eslint --cache --fix --max-warnings 0"
}
}