Spaces:
Sleeping
Sleeping
Upload package.json
Browse files- web/package.json +46 -0
web/package.json
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "greenplus-by-gxs-web",
|
| 3 |
+
"version": "2.0.0",
|
| 4 |
+
"description": "GreenPlus by GXS - Environmental Intelligence Hub with Enhanced UI/UX",
|
| 5 |
+
"private": true,
|
| 6 |
+
"dependencies": {
|
| 7 |
+
"idb": "^8.0.3",
|
| 8 |
+
"lucide-react": "^0.539.0",
|
| 9 |
+
"react": "^18.2.0",
|
| 10 |
+
"react-dom": "^18.2.0",
|
| 11 |
+
"react-scripts": "5.0.1",
|
| 12 |
+
"tone": "^15.1.22",
|
| 13 |
+
"web-vitals": "^3.3.2",
|
| 14 |
+
"react-i18next": "^14.1.2",
|
| 15 |
+
"i18next": "^23.11.5",
|
| 16 |
+
"i18next-browser-languagedetector": "^8.0.0"
|
| 17 |
+
},
|
| 18 |
+
"devDependencies": {
|
| 19 |
+
"@testing-library/jest-dom": "^5.16.5",
|
| 20 |
+
"@testing-library/react": "^13.4.0",
|
| 21 |
+
"@testing-library/user-event": "^14.4.3"
|
| 22 |
+
},
|
| 23 |
+
"scripts": {
|
| 24 |
+
"start": "react-scripts start",
|
| 25 |
+
"build": "GENERATE_SOURCEMAP=false WASM=0 react-scripts build",
|
| 26 |
+
"test": "react-scripts test",
|
| 27 |
+
"eject": "react-scripts eject"
|
| 28 |
+
},
|
| 29 |
+
"eslintConfig": {
|
| 30 |
+
"extends": [
|
| 31 |
+
"react-app"
|
| 32 |
+
]
|
| 33 |
+
},
|
| 34 |
+
"browserslist": {
|
| 35 |
+
"production": [
|
| 36 |
+
">0.2%",
|
| 37 |
+
"not dead",
|
| 38 |
+
"not op_mini all"
|
| 39 |
+
],
|
| 40 |
+
"development": [
|
| 41 |
+
"last 1 chrome version",
|
| 42 |
+
"last 1 firefox version",
|
| 43 |
+
"last 1 safari version"
|
| 44 |
+
]
|
| 45 |
+
}
|
| 46 |
+
}
|