forked from callstackincubator/ai
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.91 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@react-native-ai/monorepo",
"private": true,
"scripts": {
"typecheck": "yarn workspaces foreach --all --parallel run typecheck",
"lint": "eslint \"**/*.{js,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/callstackincubator/ai.git"
},
"author": "szymonrybczak <szymon.rybczak@gmail.com> (https://github.com/szymonrybczak)",
"contributors": [
"Mike Grabowski <grabbou@gmail.com> (https://github.com/grabbou)"
],
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-strict-mode": "^7.27.1",
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@react-native/babel-preset": "^0.80.1",
"@react-native/typescript-config": "^0.80.1",
"@release-it-plugins/workspaces": "^4.2.0",
"@release-it/conventional-changelog": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"commitlint": "^17.0.2",
"del-cli": "^5.1.0",
"eslint": "^9.31.0",
"eslint-config-expo": "^9.2.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.6.2",
"react-native-builder-bob": "^0.23.2",
"release-it": "^15.0.0",
"typescript": "^5.2.2"
},
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "yarn@3.6.1",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": false,
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
},
"@release-it-plugins/workspaces": {
"workspaces": [
"packages/*"
]
}
}
}
}