MMOON commited on
Commit
995aeb0
·
verified ·
1 Parent(s): d6999fe

Upload 2 files

Browse files
Files changed (2) hide show
  1. Dockerfile +1 -20
  2. package.json +12 -6
Dockerfile CHANGED
@@ -1,20 +1 @@
1
- FROM node:18-alpine
2
-
3
- WORKDIR /app
4
-
5
- # Copy package.json and install dependencies
6
- COPY package.json .
7
- # We don't have a lock file, so we just copy package.json
8
- RUN npm install
9
-
10
- # Copy the rest of the application code
11
- COPY . .
12
-
13
- # Build the application
14
- RUN npm run build
15
-
16
- # Expose the port the app runs on
17
- EXPOSE 7860
18
-
19
- # The start command from package.json will run the server
20
- CMD ["npm", "start"]
 
1
+ �
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.json CHANGED
@@ -1,16 +1,22 @@
1
  {
2
- "name": "audit-pro-cloud",
3
- "version": "1.3.0",
4
  "description": "Application de gestion d'audits portable et souveraine",
5
  "type": "module",
6
  "scripts": {
7
  "dev": "serve .",
8
- "build": "esbuild index.tsx --bundle --outfile=bundle.js --minify --platform=browser --format=esm --target=es2020 --loader:.tsx=tsx --loader:.ts=ts --external:react --external:react-dom --external:lucide-react --external:xlsx",
9
  "start": "serve -s . -l 7860"
10
  },
11
  "dependencies": {
12
- "serve": "^14.2.4",
13
- "esbuild": "^0.25.0"
 
 
 
 
14
  },
15
- "devDependencies": {}
 
 
16
  }
 
1
  {
2
+ "name": "audit-pro-sync",
3
+ "version": "1.3.1",
4
  "description": "Application de gestion d'audits portable et souveraine",
5
  "type": "module",
6
  "scripts": {
7
  "dev": "serve .",
8
+ "build": "esbuild index.tsx --bundle --outfile=bundle.js --minify --platform=browser --format=esm --target=es2020 --loader:.tsx=tsx --loader:.ts=ts --external:react --external:react-dom --external:react-dom/client --external:lucide-react --external:xlsx --external:@google/genai",
9
  "start": "serve -s . -l 7860"
10
  },
11
  "dependencies": {
12
+ "lucide-react": "^0.475.0",
13
+ "react": "^19.0.0",
14
+ "react-dom": "^19.0.0",
15
+ "xlsx": "0.18.5",
16
+ "@google/genai": "latest",
17
+ "serve": "^14.2.4"
18
  },
19
+ "devDependencies": {
20
+ "esbuild": "^0.25.0"
21
+ }
22
  }