-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.19 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
{
"name": "happo-plugin-storybook",
"version": "4.4.1",
"description": "A happo.io plugin for projects using Storybook",
"main": "index.js",
"scripts": {
"lint": "eslint src/",
"test": "jest",
"happo": "happo",
"build": "babel ./src --out-dir ./",
"prepublishOnly": "yarn build",
"dev": "storybook dev -p 9001 -c .storybook",
"build-local-storybook": "storybook build -c .storybook -o .happo-out"
},
"jest": {
"testMatch": [
"**/*-test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/happo/happo-plugin-storybook.git"
},
"keywords": [
"screenshot",
"testing",
"storybook",
"happo",
"visual",
"regression",
"testing"
],
"author": "Henric Trotzig <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/happo/happo-plugin-storybook/issues"
},
"homepage": "https://github.com/happo/happo-plugin-storybook#readme",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.23.3",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@mui/material": "^5.8.0",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/manager-api": "^8.0.0",
"@storybook/preview-api": "^8.0.0",
"@storybook/react": "^8.0.0",
"@storybook/react-webpack5": "^8.0.0",
"@storybook/test": "^8.0.0",
"babel-loader": "^8.0.5",
"eslint": "^8.6.0",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-react": "^7.28.0",
"file-loader": "^3.0.1",
"happo.io": "^10.1.2",
"jest": "^29.7.0",
"raw-loader": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-tether": "^2.0.0",
"storybook": "^8.0.0",
"styled-components": "^4.1.3",
"webpack": "^4.0.0"
},
"dependencies": {
"rimraf": "^5.0.0"
},
"packageManager": "[email protected]"
}