-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "compassion-design-system",
"version": "0.0.0",
"engines": {
"node": ">=16.20"
},
"description": "Compassion International's Global Design System",
"main": "index.js",
"repository": "[email protected]:compassion-global-experience/compassion-design-system.git",
"author": "Compassion Global UX <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "lerna run test",
"prep-release": "lerna version --conventional-commits",
"release": "lerna publish from-package",
"bootstrap": "npx lerna bootstrap",
"build:packages": "lerna run prepare",
"percy-snapshots:packages": "lerna run percy-snapshots",
"lint": "npx eslint packages/* --ignore-path=.gitignore --ignore-pattern '**/react-native/lib/*' --ignore-pattern '**/react-native/example/*' --ignore-pattern '**/react-native/babel.config.js'",
"test:packages": "lerna run test"
},
"devDependencies": {
"@percy/cli": "^1.26.0",
"@percy/storybook": "^4.3.5",
"@react-native/babel-plugin-codegen": "^0.73.4",
"@react-native/babel-preset": "^0.73.21",
"@react-native/codegen": "^0.73.3",
"@types/react-native": "^0.72.6",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"lerna": "^6.4.1",
"mkdirp": "^3.0.1",
"prettier": "^2.8.3",
"react-refresh": "^0.14.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.2.0",
"typescript": "^4.9.5"
},
"percy": {
"version": "2",
"storybook": {
"waitForTimeout": 1000
},
"discovery": {
"networkIdleTimeout": 700
},
"snapshot": {
"widths": [
375,
1280
]
}
},
"dependencies": {
"@types/jest": "^29.5.12"
}
}