-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.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
{
"name": "storybook-snapper",
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "Jonathan Adler",
"email": "jonathana@wix.com"
},
"main": "dist/src/index.js",
"module": "dist/es/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist",
"src",
"config"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"start": "npm run storybook",
"precommit": "lint-staged",
"pretest": "yoshi build",
"test": "npm run test:eyes-storybook",
"test:eyes-storybook": "if test \"$EYES_API_KEY\"; then npm run test:eyes-storybook:local ; fi",
"test:eyes-storybook:local": "eyes-storybook -c ./.storybook",
"posttest": "yoshi lint",
"release": "yoshi release",
"storybook": "start-storybook -c .storybook -p 6006 --ci",
"build-storybook": "build-storybook"
},
"devDependencies": {
"@applitools/eyes-storybook": "^3.20.1",
"@babel/core": "^7.5.5",
"@storybook/react": "5.0.9",
"@types/jest": "^24.0.0",
"@types/node": "^12.7.4",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"babel-loader": "^8.0.6",
"husky": "~0.14.0",
"lint-staged": "^7.2.2",
"react": "^16.9.0",
"ts-jest": "^24.0.2",
"typescript": "^3.2.4",
"@wix/yoshi": "^4.0.0"
},
"dependencies": {
"lodash": "^4.17.15"
},
"lint-staged": {
"linters": {
"*.{js,ts}": "yoshi lint"
},
"ignore": [
"**/*.d.ts"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": [
"<rootDir>/dist/",
"<rootDir>/node_modules/"
]
},
"yoshi": {
"hmr": "auto"
}
}