-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
92 lines (92 loc) · 2.78 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
{
"name": "@storybook/mdx2-csf",
"version": "0.0.4",
"description": "MDXv2 to CSF webpack compiler and loader",
"repository": {
"type": "git",
"url": "https://github.com/storybookjs/csf-mdx2"
},
"author": "Michael Shilman <michael@lab80.co>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"test": "jest",
"build": "tsup",
"start": "yarn build && yarn storybook -- --no-manager-cache --quiet\"",
"release": "yarn build && auto shipit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prettier": "prettier",
"prepare": "husky install"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/generator": "^7.12.11",
"@babel/parser": "^7.12.11",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@babel/preset-typescript": "^7.13.0",
"@babel/template": "^7.14.5",
"@babel/traverse": "^7.12.11",
"@babel/types": "^7.14.8",
"@jest/types": "^27.0.6",
"@mdx-js/mdx": "^2.0.0",
"@storybook/addon-actions": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/addon-essentials": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/addon-interactions": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/addon-links": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/react": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/react-webpack5": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"@storybook/testing-library": "next",
"@testing-library/dom": "^8.1.0",
"@testing-library/react": "^12.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^27.0.3",
"@types/js-string-escape": "^1.0.1",
"@types/lodash": "^4.14.167",
"@types/node": "^16.4.1",
"auto": "^10.3.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.1.0",
"concurrently": "^7.0.0",
"estree-to-babel": "^4.9.0",
"hast-util-to-estree": "^2.0.2",
"husky": ">=6",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"js-string-escape": "^1.0.1",
"lint-staged": ">=10",
"lodash": "^4.17.21",
"prettier": "^2.3.1",
"prompts": "^2.4.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"remark-gfm": "^3.0.1",
"rimraf": "^3.0.2",
"storybook": "^7.0.0-beta.0 || ^7.0.0-rc.0 || ^7.0.0",
"ts-dedent": "^2.2.0",
"ts-jest": "^27.0.4",
"tsup": "^6.2.2",
"typescript": "^4.2.4"
},
"resolutions": {
"@types/estree": "1.0.0"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@1.22.9"
}