-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "rule-of-three",
"main": "node_modules/expo/AppEntry.js",
"version": "1.0.0",
"homepage": "/rule-of-three",
"scripts": {
"start": "expo start",
"deploy:web": "gh-pages -t -d dist",
"predeploy:web": "npx rimraf dist && expo export --platform web",
"preview:web": "npx serve dist",
"build:android": "expo build:android",
"ts:check": "tsc",
"android": "expo run:android",
"ios": "expo run:ios",
"script:icon": "node scripts/icon.mjs assets/icon.png",
"prebuild:extension": "npx rimraf dist",
"build:extension": "expo export --platform web && mkdir -p dist/assets/icon && npm run script:icon && node scripts/extension.mjs",
"postbuild:extension": "cd dist && npx web-ext build && cd .. && mv dist/web-ext-artifacts release"
},
"dependencies": {
"@expo/metro-runtime": "~3.1.3",
"expo": "~50.0.14",
"expo-clipboard": "~5.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.73.6",
"react-native-toast-notifications": "^3.4.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@types/react": "~18.2.45",
"gh-pages": "^5.0.0",
"sharp": "^0.33.3",
"typescript": "^5.1.3"
},
"private": true,
"volta": {
"node": "20.11.1"
}
}