gaialive commited on
Commit
1299b23
·
verified ·
1 Parent(s): b079a0f

Upload 2 files

Browse files
Files changed (2) hide show
  1. package-lock.json +0 -0
  2. package.json +43 -0
package-lock.json ADDED
The diff for this file is too large to render. See raw diff
 
package.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "greenplus-by-gxs",
3
+ "version": "1.0.0",
4
+ "description": "GreenPlus by GXS: An AI-powered environmental intelligence platform with tools for monitoring water quality, biodiversity, and more.",
5
+ "private": true,
6
+ "workspaces": [
7
+ "web",
8
+ "backend"
9
+ ],
10
+ "dependencies": {
11
+ "react": "18.2.0",
12
+ "react-dom": "18.2.0"
13
+ },
14
+ "scripts": {
15
+ "install:all": "npm install && npm --prefix web install && npm --prefix backend install",
16
+ "dev": "concurrently \"npm run dev:backend\" \"npm run dev:web\"",
17
+ "dev:web": "npm start --prefix web",
18
+ "dev:backend": "npm run dev --prefix backend",
19
+ "build:web": "npm run build --prefix web",
20
+ "start:prod": "npm run build:web && npm start --prefix backend",
21
+ "start": "npm start --prefix backend",
22
+ "test": "npm test --prefix web && npm test --prefix backend"
23
+ },
24
+ "devDependencies": {
25
+ "concurrently": "^8.2.2",
26
+ "@typescript-eslint/eslint-plugin": "^6.7.4",
27
+ "@typescript-eslint/parser": "^6.7.4",
28
+ "eslint": "^8.50.0",
29
+ "prettier": "^3.0.3"
30
+ },
31
+ "keywords": [
32
+ "environment",
33
+ "sustainability",
34
+ "climate-change",
35
+ "eco-friendly",
36
+ "green-technology",
37
+ "react",
38
+ "nodejs",
39
+ "ai"
40
+ ],
41
+ "author": "Anshul Mehra",
42
+ "license": "MIT"
43
+ }