forked from expo/snack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.09 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "snack",
"version": "0.0.0",
"description": "Playground for Expo!",
"author": "[email protected]",
"private": true,
"main": "index.js",
"owner": "exponent",
"scripts": {
"start": "expo start",
"web": "expo start --web",
"postinstall": "patch-package",
"lint": "eslint .",
"typescript": "tsc",
"test": "jest",
"deploy:staging": "EXPO_PUBLIC_SNACK_ENV=staging EXPO_STAGING=1 eas update --auto --branch production",
"deploy:prod": "EXPO_PUBLIC_SNACK_ENV=production eas update --auto --branch production",
"deploy:web:staging": "EXPO_PUBLIC_SNACK_ENV=staging node ./web/deploy-script.js",
"deploy:web:prod": "EXPO_PUBLIC_SNACK_ENV=production node ./web/deploy-script.js"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-navigation/drawer": "^6.6.2",
"@react-navigation/native": "^6.1.6",
"assert": "^2.1.0",
"await-lock": "^2.2.2",
"canvaskit-wasm": "0.38.0",
"diff": "^5.0.0",
"escape-string-regexp": "^5.0.0",
"expo": "~51.0.20",
"expo-asset": "~10.0.10",
"expo-barcode-scanner": "~13.0.1",
"expo-constants": "~16.0.2",
"expo-file-system": "~17.0.1",
"expo-font": "~12.0.8",
"expo-keep-awake": "~13.0.2",
"expo-linking": "~6.3.1",
"expo-random": "~14.0.1",
"expo-router": "~3.5.18",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.19",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"pubnub": "^7.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-pager-view": "6.3.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-view-shot": "3.8.0",
"react-native-web": "~0.19.6",
"snack-babel-standalone": "file:../packages/snack-babel-standalone",
"snack-content": "file:../packages/snack-content",
"snack-require-context": "file:../packages/snack-require-context",
"socket.io-client": "~4.5.4",
"source-map": "0.6.1"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@expo/spawn-async": "^1.7.2",
"@types/diff": "^5.0.0",
"@types/jest": "^26.0.24",
"@types/pubnub": "^7.2.0",
"@types/react": "~18.2.79",
"@types/react-dom": "~18.2.25",
"@types/react-native": "~0.70.6",
"babel-preset-expo": "~11.0.0",
"eslint": "^8.56.0",
"eslint-config-universe": "^12.0.0",
"getenv": "^1.0.0",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.2.4",
"s3-deploy": "^1.4.0",
"semver": "^7.5.1",
"typescript": "~5.3.3"
},
"eslintConfig": {
"extends": "universe/native",
"ignorePatterns": [
"vendor"
],
"overrides": [
{
"files": [
"*.config.js"
],
"extends": "universe/node"
}
]
},
"jest": {
"preset": "jest-expo"
}
}