-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 862 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 862 Bytes
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
{
"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/*"
]
},
"devDependencies": {
"lerna": "^3.20.2",
"prettier": "^2.4.1",
"react": "19.0.0",
"react-native": "0.78.2"
},
"resolutions": {
"@types/eslint": "^7.28.2",
"@types/node": "*",
"@types/react": "^18.0.24"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
}