-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 4.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 4.28 KB
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
{
"name": "about",
"version": "1.0.0",
"main": "expo-router/entry",
"description": "All of the following are personal projects which I wrote for fun/learning, enjoy! * [PyPrez](https://github.com/modularizer/pyprez) Run Python in the browser using pyodide => web assembly. Embed runnable python in StackOverflow answers * [Online Gameboard](https://modularizer.github.io/gameboard/#quoridor.octopus.p2) \"Serverless\" application allowing you to play board games with friends online using WebRTC peer-to-peer technology * [voiceChatGPT](https://github.com/modularizer/voiceChatGPT) Now outdated, but I gave a voice and speech recognition to ChatGPT using the javascript API about 10 months before OpenAI added their voice chat feature (which is WAY better than what i did) * [HelloWorldKeyboard](https://github.com/modularizer/HelloWorldKeyboard) DIY to teach people how to make their own Android keyboard * [TeebyDeeby](https://modularizer.github.io/teebydeeby/?src=https://data.cityofnewyork.us/resource/uvxr-2jwn.json) Javascript package making it very easy to display JSON data in a decent looking table. * [DIY GPS Watch](https://github.com/modularizer/weargaroo) Designed, 3D printed, built, and coded a GPS watch to track my runs * [`pip install namednumber`](https://github.com/modularizer/namednumber) `pip` package which lets you get fun pseudo-random names like `angry turtle` from inputs like numbers * [`pip install socketwrench`](https://github.com/modularizer/socketwrench) Python webserver built from scratch from the `socket` builtin library. * [`pip install google-photos-slideshow`](https://github.com/modularizer/google-photos-slideshow) Play a google photos album as a collaborative slideshow that updates as users add photos(used at my wedding) * [Grocery Recipes Extension](https://github.com/modularizer/priceparency) Web extension to add the ability to display per-meal prices on grocery store recipes website. * [Programmify](https://github.com/modularizer/programmify) Easily turn python code into an executable with a system tray icon * [Delta Robot](https://github.com/modularizer/delta_robot) Made a cool robot which can move around a camera to physically zoom in on tiny subjects * [TotSecret](https://github.com/modularizer/totsecret) DIY toolkit for implementing SHA, RSA, and Time-Based One Time Password in Python. Used this to make a real physical lock that accepts time-based passcodes typed into a physical numpad.",
"scripts": {
"start": "npx expo start --web",
"dev": "webpack serve --config webpack.dev.config.js",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"build:deploy": "npm run build && cp index.html dist/ && cp 404.html dist/",
"build:github-data": "node scripts/build-github-data.js",
"postbuild": "echo '\n✅ Build complete! For deployment, run: npm run build:deploy'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@expo/metro-runtime": "^6.1.2",
"@expo/vector-icons": "^15.0.3",
"expo": "^54.0.25",
"expo-image": "^3.0.10",
"expo-router": "^6.0.15",
"expo-status-bar": "^3.0.8",
"idb": "^8.0.3",
"marked": "^17.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-native": "^0.82.1",
"react-native-markdown-display": "^7.0.2",
"react-native-svg": "^15.15.0",
"react-native-web": "^0.21.2",
"react-native-webview": "^13.16.0",
"tsfiltor": "^0.1.5"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@expo/config-plugins": "^54.0.2",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/react-native": "^0.72.8",
"babel-loader": "^9.2.1",
"babel-plugin-module-resolver": "^5.0.2",
"dotenv-webpack": "^8.1.1",
"html-webpack-plugin": "^5.6.5",
"process": "^0.11.10",
"typescript": "^5.9.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
}
}