-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.8 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
71
72
{
"name": "performance-workshops",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "rock start",
"lint": "eslint .",
"lint:timing": "TIMING=all eslint .",
"test": "jest",
"ios": "rock run:ios",
"android": "rock run:android",
"bundle:android": "rock bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --sourcemap-output android/app/src/main/assets/index.android.bundle.map",
"bundle:ios": "rock bundle --platform ios --dev false --entry-file index.js --bundle-output ios/main.jsbundle --sourcemap-output ios/main.jsbundle.map",
"bundle:discover": "npx react-native-bundle-discovery server metro-stats.json",
"downloadtrace:android": "npx react-native-release-profiler --fromDownload --appId com.performanceworkshops --sourcemap-path android/app/src/main/assets/index.android.bundle.map",
"test:perf": "reassure",
"test:perf:baseline": "reassure --baseline",
"test:perf:check-stability": "reassure check-stability"
},
"dependencies": {
"@bottom-tabs/react-navigation": "^0.9.2",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-clipboard/clipboard": "^1.16.2",
"@react-navigation/native": "^7.1.21",
"@react-navigation/native-stack": "^7.7.0",
"@reduxjs/toolkit": "^2.8.2",
"date-fns": "^4.1.0",
"react": "19.1.1",
"react-freeze": "^1.0.4",
"react-native": "0.82.1",
"react-native-bottom-tabs": "^0.9.2",
"react-native-gesture-handler": "^2.29.1",
"react-native-performance": "^5.1.4",
"react-native-release-profiler": "^0.4.2",
"react-native-safe-area-context": "^5.5.2",
"react-native-screens": "^4.18.0",
"react-redux": "^9.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@expo/fingerprint": "^0.11.6",
"@faker-js/faker": "^9.8.0",
"@react-native/babel-preset": "0.82.1",
"@react-native/eslint-config": "0.82.1",
"@react-native/metro-config": "0.82.1",
"@react-native/typescript-config": "0.82.1",
"@rock-js/platform-android": "^0.11.12",
"@rock-js/platform-ios": "^0.11.12",
"@rock-js/plugin-metro": "^0.11.12",
"@rock-js/welcome-screen": "^0.11.12",
"@testing-library/react-native": "^13.2.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.1",
"@types/react-test-renderer": "^19.1.0",
"babel-jest": "^29.6.3",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^8.19.0",
"eslint-plugin-react-hooks": "^7.0.1",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-native-bundle-discovery": "^1.2.3",
"react-test-renderer": "19.1.1",
"reassure": "^1.4.0",
"rock": "^0.11.12",
"typescript": "5.8.3"
},
"engines": {
"node": ">=20"
}
}