-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.27 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
{
"private": true,
"name": "react-native-template",
"author": "Daniil Yankouski",
"license": "MIT",
"scripts": {
"bootstrap": "yarn flush && yarn pods",
"flush": "rm -rf node_modules && lerna clean --yes && yarn",
"flush:force": "rm -rf node_modules && rm yarn.lock && lerna clean --yes && yarn",
"pods": "lerna run pods --stream",
"prettier": "lerna run prettier --stream",
"lint": "lerna run lint --stream",
"test": "lerna run test --stream",
"prepare": "husky",
"postinstall": "lerna run postinstall --stream"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/react-native",
"**/react-*",
"**/@react-*",
"**/@react-*/**",
"**/react-native/**"
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@my-app/prettier-config": "^1.0.0",
"eslint": "^8.53.0",
"husky": "^9.0.11",
"lerna": "^8.1.3",
"prettier": "3.2.5",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"resolutions": {
"prettier": "3.2.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3"
},
"packageManager": "[email protected]+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}