-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.58 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rn-card-game",
"version": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/@react-native-async-storage/async-storage",
"**/react",
"**/react-dom",
"**/react-native",
"**/react-native/**",
"**/react-native-codegen",
"**/react-native-dev-menu"
]
},
"scripts": {
"reset": "find . -type dir -name node_modules | xargs rm -rf && rm -rf yarn.lock",
"android:metro": "yarn workspace @rn-card-game/mobile start",
"android:start": "yarn workspace @rn-card-game/mobile android",
"android:studio": "yarn workspace @rn-card-game/mobile studio",
"ios:metro": "yarn workspace @rn-card-game/mobile start",
"ios:start": "yarn workspace @rn-card-game/mobile ios",
"ios:xcode": "yarn workspace @rn-card-game/mobile xcode",
"ios:pods": "yarn workspace @rn-card-game/mobile pods",
"web:start": "yarn workspace @rn-card-game/web start",
"web:build": "yarn workspace @rn-card-game/web build",
"lint": "ultra -r lint",
"lint:fix": "ultra -r lint:fix",
"test": "ultra -r test",
"typecheck": "ultra -r typecheck",
"generate-image-imports": "node scripts/images.js",
"generate-svg-imports": "node scripts/svgs.js"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"babel-jest": "^28.1.3",
"customize-cra": "^1.0.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-native": "^3.11.0",
"jest": "^28.1.3",
"metro-react-native-babel-preset": "^0.70.0",
"prettier": "^2.3.2",
"react-app-rewired": "^2.2.1",
"react-native-svg-transformer": "^1.0.0",
"ts-jest": "^28.0.8",
"typescript": "^4.4.2",
"ultra-runner": "^3.10.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.6",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.1",
"pino": "^7.9.2",
"react-native-gesture-handler": "^2.3.2",
"react-native-safe-area-context": "^4.2.4",
"react-native-safe-area-view": "^1.1.1",
"react-native-size-matters": "^0.4.0",
"react-native-svg": "^12.3.0"
},
"resolutions": {
"@types/react": "^17.0.2"
}
}