-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.66 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
{
"name": "@chromaui/archive-storybook",
"version": "0.0.18",
"description": "A Storybook for rendering webpage archives",
"repository": {
"type": "git",
"url": "https://github.com/chromaui/archive-storybook.git"
},
"author": "Chromatic <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"bin": {
"archive-storybook": "dist/bin/archive-storybook.js",
"build-archive-storybook": "dist/bin/build-archive-storybook.js"
},
"files": [
"dist/**/*",
"config/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"clean": "rimraf ./dist",
"prebuild": "yarn clean",
"build": "tsup",
"build:watch": "yarn build --watch",
"test": "jest",
"start": "yarn build:watch",
"release": "yarn build && auto shipit",
"lint": "eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs",
"prettier": "prettier",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
},
"auto": {
"plugins": [
"npm",
"released"
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@storybook/csf": "^0.1.0",
"lodash.debounce": "^4.0.8",
"rrweb-snapshot": "^2.0.0-alpha.4"
},
"peerDependencies": {
"@storybook/addon-essentials": ">= 7.0.0",
"@storybook/cli": ">= 7.0.0",
"@storybook/server-webpack5": ">= 7.0.0"
},
"devDependencies": {
"@auto-it/released": "^10.32.6",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@jest/types": "^27.0.6",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/cli": "^7.0.2",
"@storybook/eslint-config-storybook": "^3.1.2",
"@storybook/server-webpack5": "^7.0.2",
"@storybook/types": "^7.0.2",
"@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/lodash.debounce": "^4.0.7",
"@types/node": "^16.4.1",
"auto": "^10.3.0",
"babel-jest": "^27.0.6",
"concurrently": "^7.0.0",
"eslint": "^7.32.0",
"husky": ">=6",
"jest": "^27.0.6",
"jest-environment-jsdom": "^27.0.6",
"lint-staged": ">=10",
"prettier": "^2.3.1",
"prompts": "^2.4.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"ts-dedent": "^2.2.0",
"ts-jest": "^27.0.4",
"tsup": "^6.7.0",
"typescript": "^4.2.4"
}
}