summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-09-23 10:29:53 +0200
committerYuval Adam <_@yuv.al>2024-09-23 10:29:53 +0200
commit8a6ff5a2c15422badf0bc9c8166787dc23a71072 (patch)
treeda45cc6fc598520102260da87c3733107ef4e980 /package.json
parent51370d591d4f2ac4eddd8b2ea2f9c5118fbf9ab1 (diff)
Move all geshem/ files to root
Diffstat (limited to 'package.json')
-rw-r--r--package.json81
1 files changed, 25 insertions, 56 deletions
diff --git a/package.json b/package.json
index cbd33b2..1133ec7 100644
--- a/package.json
+++ b/package.json
@@ -1,63 +1,32 @@
{
"name": "geshem",
- "version": "6.0.0",
- "description": "Geshem.space Rain Radar",
- "main": "geshem.js",
- "homepage": "https://geshem.space",
- "repository": "https://github.com/yuvadm/geshem.space",
- "author": "Yuval Adam <_@yuv.al>",
- "license": "MIT",
- "private": false,
- "dependencies": {
- "@testing-library/jest-dom": "^5.16.5",
- "@testing-library/react": "^13.3.0",
- "@testing-library/user-event": "^13.5.0",
- "@types/jest": "^27.5.2",
- "@types/luxon": "^3.0.0",
- "@types/mapbox-gl": "^2.7.5",
- "@types/node": "^16.11.56",
- "@types/react": "^18.0.17",
- "@types/react-dom": "^18.0.6",
- "axios": "^0.27.2",
- "luxon": "^3.0.3",
- "mapbox-gl": "^2.11.0",
- "rc-slider": "^10.0.1",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "react-router-dom": "^6.3.0",
- "react-scripts": "5.0.1",
- "typescript": "^4.8.2"
- },
+ "version": "7.0.0",
+ "private": true,
"scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
- "test": "react-scripts test",
- "eject": "react-scripts eject",
- "serverless": "cd cron; serverless",
- "deploycron": "cd cron; serverless deploy function -f update",
- "invokecron": "cd cron; serverless invoke -l -f update"
- },
- "eslintConfig": {
- "extends": [
- "react-app",
- "react-app/jest"
- ]
+ "dev": "next dev",
+ "build": "next build",
+ "start": "next start",
+ "lint": "next lint"
},
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
+ "dependencies": {
+ "next": "14.2.13",
+ "react": "^18",
+ "react-dom": "^18"
},
"devDependencies": {
- "serverless": "^3.22.0",
- "serverless-python-requirements": "^5.0.1"
- },
- "proxy": "https://imgs.geshem.space/"
+ "@types/luxon": "^3.4.2",
+ "@types/mapbox-gl": "^3.4.0",
+ "@types/node": "^20",
+ "@types/react": "^18",
+ "@types/react-dom": "^18",
+ "axios": "^1.7.7",
+ "eslint": "^8",
+ "eslint-config-next": "14.2.13",
+ "luxon": "^3.5.0",
+ "mapbox-gl": "^3.6.0",
+ "postcss": "^8",
+ "rc-slider": "^11.1.6",
+ "tailwindcss": "^3.4.1",
+ "typescript": "^5"
+ }
}