-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
105 lines (105 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"private": true,
"description": "_",
"workspaces": [
"packages/bubble-dev/*",
"packages/colorido",
"packages/elegir",
"packages/fantasy-color/*",
"packages/lada/*",
"packages/math-playground",
"packages/msked",
"packages/primitives/*",
"packages/sandbox/*",
"packages/stili",
"packages/themeables/*"
],
"devDependencies": {
"@bubble-dev/eslint-config": "*",
"@bubble-dev/start-preset": "*",
"@bubble-dev/typescript-config": "*",
"@revert/color": "^0.1.1",
"@revert/sandbox": "^0.3.4",
"@start/plugin": "^2.0.0",
"@types/node": "^14.14.41",
"colorido": "*",
"core-js": "^3.11.0",
"eslint": "^7.25.0",
"foreal": "^0.2.0",
"react": "17.0.1",
"react-native": "0.64.0",
"tsfn": "^2.0.0",
"typescript": "^4.2.4"
},
"scripts": {
"start": "packages/bubble-dev/start-preset/src/cli/index.js",
"postinstall": "perl -pi -e \"s/'React'/'React-Core'/g\" ./node_modules/react-native-svg/RNSVG.podspec ./node_modules/lottie-react-native/lottie-react-native.podspec ./node_modules/react-native-view-shot/react-native-view-shot.podspec"
},
"start": {
"file": "tasks/",
"auto": {
"shouldMakeGitTags": true,
"shouldWriteChangelogFiles": true
}
},
"auto": {
"bump": {
"initialType": "minor",
"zeroBreakingChangeType": "minor"
},
"npm": {
"publishSubDirectory": "build",
"access": "public"
},
"prefixes": {
"major": "💥",
"minor": "🌱",
"patch": "🐞",
"publish": "📦",
"dependencies": "♻️",
"initial": "🐣",
"lint": "🚷",
"test": "👾",
"docs": "📝",
"refactor": "🛠",
"wip": "🚧",
"screenshots": "📸"
},
"commit": {
"major": "Breaking Change",
"minor": "New feature",
"patch": "Bugfix",
"initial": "Initial",
"depepdencies": "Dependencies",
"lint": "Lint",
"test": "Test",
"docs": "Docs",
"refactor": "Refactor",
"wip": "WIP",
"screenshots": "Snapshots / Screenshots"
}
},
"eslintConfig": {
"extends": "@bubble-dev/eslint-config"
},
"eslintIgnore": [
"build/",
"coverage/",
"node_modules/"
],
"renovate": {
"commitMessagePrefix": "♻️",
"commitMessageAction": "update",
"commitMessageTopic": "{{depName}}",
"ignoreDeps": [
"gradle",
"metro-react-native-babel-preset",
"react",
"react-dom",
"react-test-renderer"
]
},
"engines": {
"node": ">=10.13.0"
}
}