-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2 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
{
"name": "@sherlo/root",
"version": "1.0.3",
"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/*",
"testing/*"
]
},
"scripts": {
"build": "lerna run build",
"dev": "lerna run dev",
"dev:check-types": "tsc --noEmit",
"remove-all-node-modules": "rm -rf node_modules && rm -rf packages/*/node_modules && rm -rf examples/*/node_modules && rm -rf testing/*/node_modules",
"lint": "cross-env NODE_ENV=production eslint --cache --cache-location=.cache/eslint --ext .js,.jsx,.html,.ts,.tsx,.mjs --report-unused-disable-directives",
"lint:circular-dependencies": "npx madge --extensions ts --circular .",
"lint:fix": "yarn lint . --fix",
"publish:alpha": "lerna publish from-git --dist-tag alpha",
"publish:latest": "lerna publish from-git --dist-tag latest",
"publish:next": "lerna publish from-git --dist-tag next",
"test:ci": "lerna run test:ci",
"test": "lerna run test",
"switch-env:test": "./scripts/switch-env.sh test && yarn build",
"switch-env:dev": "./scripts/switch-env.sh dev && yarn build",
"switch-env:prod": "./scripts/switch-env.sh prod && yarn build",
"update-examples": "bash scripts/updateExamples.sh"
},
"devDependencies": {
"@react-native/eslint-config": "^0.72.1",
"cross-env": "^7.0.3",
"eslint": "8.24.0",
"lerna": "^8.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"resolutions": {
"react-docgen-typescript": "2.2.2"
},
"engines": {
"node": ">=10.24.1",
"yarn": ">=1.22.0"
},
"packageManager": "[email protected]"
}