-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
37 lines (37 loc) · 929 Bytes
/
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
{
"private": true,
"author": "Joel Arvidsson",
"license": "MIT",
"scripts": {
"build": "yarn workspace react-native-performance prepare",
"check-format": "prettier '{,packages/**/,examples/*/}*.{md,js,ts,tsx,json}' --check",
"format": "prettier '{,packages/**/,examples/*/}*.{md,js,ts,tsx,json}' --write",
"postinstall": "yarn build",
"test": "yarn workspace react-native-performance test",
"types": "tsc --noEmit"
},
"workspaces": {
"packages": [
"examples/*",
"packages/*"
],
"nohoist": [
"**/flipper",
"**/flipper/**",
"**/flipper-pkg",
"**/flipper-pkg/**"
]
},
"devDependencies": {
"lerna": "^3.20.2",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-native": "0.72.1"
},
"resolutions": {
"@types/eslint": "^7.28.2",
"@types/node": "*",
"@types/react": "^18.0.24",
"flipper-ui-core": "0.0.0"
}
}