-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.54 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
{
"name": "expo-2d-game-engine",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"upgrade-expo": "yarn add expo@latest; npx expo install --fix; npx expo install --check; npx expo-doctor; bun install; echo bun run api",
"dev": "bun run start",
"start": "expo start",
"eject": "expo eject",
"test": "echo 'Running Standard.js and Jasmine unit tests...\n' && bun run lint && bun run unit",
"unit": "babel-node spec/run.js",
"lint": "ts-standard",
"fix": "ts-standard --fix",
"newg": "cp game/Ball.ts game/New.ts; echo \"Now rename file 'game/New.ts' to whatever you want.\"",
"pub": "expo publish",
"build:ios": "eas build --profile production --platform ios --auto-submit",
"build:android": "eas build --profile production --platform android --auto-submit",
"submit:ios": "eas submit --platform ios --latest",
"submit:android": "eas submit --platform android --latest",
"submit:hotfix": "eas update"
},
"ts-standard": {
"ignore": [
"next-env.d.ts",
"types/*"
],
"globals": [
"expect",
"it"
]
},
"dependencies": {
"@shopify/react-native-skia": "1.2.3",
"expo": "^51.0.25",
"expo-av": "^14.0.6",
"expo-build-properties": "^0.12.5",
"react": "^18.2.0",
"react-native": "^0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@types/react": "~18.2.79",
"ts-standard": "^12.0.2",
"typescript": "^5.3.3"
}
}