forked from EvanBacon/snake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·78 lines (78 loc) · 3.2 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
{
"name": "snakern",
"version": "3.2.1",
"private": true,
"description": "react-native-pixi Snake game made in React Native with @flyskywhy/react-native-gcanvas instead of expo-gl",
"scripts": {
"rn": "adb reverse tcp:8081 tcp:8081; node node_modules/react-native/local-cli/cli.js start",
"rn-fresh": "adb reverse tcp:8081 tcp:8081; watchman watch-del-all; rm -rf /tmp/react-*; rm -rf /tmp/npm-*; rm -rf /tmp/haste-*; rm -rf /tmp/metro-*; node node_modules/react-native/local-cli/cli.js start --reset-cache",
"android": "cross-env node node_modules/react-native/local-cli/cli.js run-android --no-jetifier",
"android-fresh": "cross-env ./android/gradlew installDebug --rerun-tasks -x lint -x lintVitalRelease -p ./android/",
"fast-android": "cross-env ./android/gradlew installDebug --offline -x lint -x lintVitalRelease -p ./android/",
"fast-android-fresh": "cross-env ./android/gradlew installDebug --rerun-tasks --offline -x lint -x lintVitalRelease -p ./android/",
"build-android": "cross-env ./android/gradlew assembleRelease --offline -x lint -x lintVitalRelease -p ./android/",
"build-android-fresh": "cross-env ./android/gradlew assembleRelease --rerun-tasks --offline -x lint -x lintVitalRelease -p ./android/",
"bundle-android": "cross-env ./android/gradlew bundleRelease --offline -x lint -x lintVitalRelease -p ./android/",
"ios": "node node_modules/react-native/local-cli/cli.js run-ios",
"web": "cross-env PLATFORM_OS=web DISABLE_ESLINT_PLUGIN=true react-app-rewired start",
"web-clean": "rimraf node_modules/.cache/default-development",
"web-fresh": "rm -fr node_modules/.cache/*; cross-env PLATFORM_OS=web DISABLE_ESLINT_PLUGIN=true react-app-rewired start",
"build-web": "cross-env PLATFORM_OS=web DISABLE_ESLINT_PLUGIN=true react-app-rewired build",
"build-web-snakeRN": "cross-env PUBLIC_URL=/snakeRN PLATFORM_OS=web DISABLE_ESLINT_PLUGIN=true react-app-rewired build",
"test": "jest",
"test-web": "cross-env PLATFORM_OS=web DISABLE_ESLINT_PLUGIN=true react-app-rewired test --env=jsdom",
"lint": "eslint ."
},
"dependencies": {
"@flyskywhy/react-native-gcanvas": "5.1.6",
"expo-blur": "~8.0.0",
"expo-font": "~8.0.0",
"modal-enhanced-react-native-web": "^0.2.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "0.63.2",
"react-native-pixi": "2.1.1",
"react-native-unimodules": "0.12.0",
"react-native-web": "0.17.5"
},
"devDependencies": {
"@react-native-community/eslint-config": "3.0.1",
"cross-env": "^7.0.3",
"eslint": "7.8.1",
"prettier": "2.1.1",
"process": "^0.11.10",
"react-app-rewired": "2.2.1",
"react-refresh": "0.11.0",
"react-scripts": "5.0.0",
"react-test-renderer": "16.13.1",
"stream-browserify": "^3.0.0"
},
"keywords": [
"android",
"app",
"game",
"ios",
"native",
"opengl",
"pixi",
"react",
"react-native",
"web",
"webgl"
],
"jest": {
"preset": "react-native"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}