-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
134 lines (134 loc) · 5.05 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "skeet-app",
"version": "1.9.9",
"description": "Skeet Framework Boilerplate",
"author": "ELSOUL LABO B.V.",
"license": "Apache-2.0",
"private": false,
"engines": {
"pnpm": ">=8",
"npm": "please_use_pnpm_instead",
"node": "20",
"version": "0.0.1"
},
"scripts": {
"ci:version": "pnpm publish -r",
"format": "prettier --write --ignore-unknown .",
"lint": "eslint --ext .ts,.tsx --fix .",
"test": "jest --coverage=false --detectOpenHandles --maxWorkers=1",
"typecheck": "tsc --noEmit",
"skeet": "run-p skeet:*",
"skeet:skeet": "pnpm -F skeet-func dev",
"skeet-func": "pnpm -F skeet-func",
"skeet:dev": "firebase emulators:start --import=./tmp/data --export-on-exit",
"skeet:webapp": "pnpm webapp",
"skeet:webappBuildForEmulator": "pnpm build:development:webapp",
"functions:dev": "firebase emulators:start --only functions",
"functions:deploy": "firebase deploy --only functions",
"dev": "EXPO_USE_PATH_ALIASES=1 expo start -c",
"android": "EXPO_USE_PATH_ALIASES=1 expo start --android",
"ios": "EXPO_USE_PATH_ALIASES=1 expo start --ios",
"webapp": "EXPO_USE_PATH_ALIASES=1 expo start --web",
"update:packages": "ncu -x 'react-native-reanimated,react-native-svg' && pnpm",
"build": "pnpm build:production:webapp",
"build:configure": "eas build:configure",
"build:development:ios": "eas build --platform ios --profile development",
"build:development:android": "eas build --platform android --profile development",
"build:development:webapp": "expo export:web --dev",
"build:preview:ios": "eas build --platform ios --profile preview",
"build:preview:android": "eas build --platform android --profile preview",
"build:production:ios": "eas build --platform ios --profile production",
"build:production:android": "eas build --platform android --profile production",
"build:production:webapp": "expo export:web",
"deploy:android": "eas submit --platform android",
"deploy:webapp": "pnpm build:production:webapp && npx firebase deploy --only hosting",
"deploy:rules": "npx firebase deploy --only firestore:rules,storage",
"check:webapp": "npx serve web-build",
"start": "EXPO_USE_PATH_ALIASES=1 expo start -c",
"discord": "npx ts-node -r tsconfig-paths/register --transpile-only ./.github/workflows/runDiscordChangeLog.ts"
},
"dependencies": {
"@expo-google-fonts/inter": "0.2.3",
"@expo-google-fonts/noto-sans-jp": "0.2.3",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-community/cli-platform-android": "10.2.0",
"@react-native-community/cli-platform-ios": "10.2.0",
"@react-navigation/native": "6.1.6",
"@react-navigation/native-stack": "6.9.12",
"@rivascva/react-native-code-editor": "1.2.2",
"@skeet-framework/firestore": "2.1.1",
"clsx": "1.2.1",
"date-fns": "2.30.0",
"dotenv": "16.0.3",
"expo": "48.0.5",
"expo-checkbox": "2.3.1",
"expo-font": "11.1.1",
"expo-image": "1.0.2",
"expo-image-picker": "14.1.1",
"expo-linking": "4.0.1",
"firebase": "10.5.2",
"framer-motion": "10.3.4",
"i18next": "22.4.10",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "12.2.0",
"react-native": "0.71.14",
"react-native-gesture-handler": "2.9.0",
"react-native-heroicons": "3.2.0",
"react-native-popup-menu": "0.16.1",
"react-native-reanimated": "2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "3.20.0",
"react-native-svg": "13.4.0",
"react-native-svg-transformer": "1.0.0",
"react-native-toast-message": "2.1.6",
"react-native-utilities": "0.1.7",
"react-native-web": "0.18.12",
"recoil": "0.7.7",
"text-encoding": "0.7.0",
"twrnc": "3.6.1",
"zod": "3.22.3"
},
"devDependencies": {
"@babel/core": "7.21.0",
"@changesets/cli": "^2.27.1",
"@expo/metro-config": "0.7.1",
"@expo/webpack-config": "18.0.1",
"@skeet-framework/discord-utils": "^0.2.13",
"@skeet-framework/utils": "^1.2.3",
"@svgr/webpack": "6.5.1",
"@types/jest": "29.5.0",
"@types/node": "20.10.0",
"@types/node-fetch": "2.6.2",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"@types/text-encoding": "0.0.36",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"babel-loader": "9.1.2",
"babel-plugin-module-resolver": "5.0.0",
"eas-cli": "3.7.2",
"esbuild": "0.17.14",
"eslint": "8.47.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"firebase-functions": "^4.5.0",
"firebase-tools": "12.9.1",
"jest": "29.3.1",
"nodemon": "2.0.22",
"npm-check-updates": "16.8.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.2.4",
"tailwindcss": "3.3.1",
"ts-jest": "29.0.5",
"ts-loader": "9.4.2",
"tsconfig-paths": "4.1.2",
"typescript": "4.9.4"
},
"resolutions": {
"@types/react": "~17.0.21"
}
}