-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.45 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.45 KB
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
{
"name": "@sherlo/root",
"private": true,
"description": "Sherlo is a Visual Testing tool for React Native Storybook",
"keywords": [
"testing",
"visual testing",
"visual regression testing",
"components",
"documentation",
"frontend",
"react-native",
"storybook",
"storybookjs",
"tool",
"ui",
"user interface"
],
"homepage": "https://sherlo.io",
"repository": {
"type": "git",
"url": "https://github.com/sherlo-io/sherlo.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "lerna run build",
"lint:circular-dependencies": "npx madge --extensions ts --circular .",
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:js:fix": "yarn lint . --fix",
"lint:types": "tsc --noEmit",
"reset": "./scripts/reset.sh",
"switch-env:test": "./scripts/switch-env.sh test",
"switch-env:dev": "./scripts/switch-env.sh dev",
"switch-env:prod": "./scripts/switch-env.sh prod"
},
"devDependencies": {
"@react-native/eslint-config": "^0.72.1",
"cross-env": "^7.0.3",
"eslint": "8.24.0",
"lerna": "^9.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=10.24.1",
"yarn": ">=4.3.1"
},
"packageManager": "yarn@4.12.0",
"resolutions": {
"tar": ">=7.5.10"
}
}