-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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
{
"name": "monorepo-template",
"private": true,
"engines": {
"node": "14.x"
},
"scripts": {
"clean": "yarn workspaces foreach --verbose --parallel --topological --exclude '\\.' run clean && yarn run clean-build-cache",
"clean-build-cache": "rimraf .build-cache",
"build": "yarn workspaces foreach --verbose --parallel --topological run build",
"test": "yarn workspaces foreach --verbose --parallel run test",
"pretest": "run-p 'pretest-typescript' 'pretest-lint'",
"pretest-typescript": "yarn workspaces foreach --verbose --parallel --topological run pretest-typescript",
"pretest-lint": "yarn workspaces foreach --verbose --parallel run pretest-lint",
"pretest-lint-fix": "yarn workspaces foreach --verbose --parallel run pretest-lint-fix"
},
"dependencies": {
"react-native": "0.63.4"
},
"devDependencies": {
"expo-yarn-workspaces": "^1.5.2",
"npm-run-all": "4.1.5",
"prettier": "^2.3.2",
"rimraf": "3.0.2",
"typescript": "4.3.5"
},
"resolutions": {
"typescript": "4.3.5",
"eslint": "7.32.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"react-native": "0.63.4",
"@types/react-native": "~0.63.2"
},
"workspaces": {
"packages": [
"packages/*",
"applications/*"
]
}
}