c-gohlke commited on
Commit
1118cc1
·
verified ·
1 Parent(s): 2e9f6ee

Update Space

Browse files
Files changed (2) hide show
  1. Dockerfile +8 -0
  2. package.json +53 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ FROM node:20.10.0
2
+
3
+ WORKDIR /opt
4
+ COPY ./package.json /opt/package.json
5
+ RUN npm install . --force
6
+
7
+ COPY ./dist /opt/dist
8
+ CMD npm run preview
package.json ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "litrl",
3
+ "private": true,
4
+ "version": "0.0.1",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "VITE_API_URL=http://0.0.0.0:7860 vite",
8
+ "build": "tsc && vite build",
9
+ "preview": "vite preview --host 0.0.0.0 --port 7860",
10
+ "test.e2e": "cypress run",
11
+ "test.unit": "vitest",
12
+ "lint": "npx prettier src --write "
13
+ },
14
+ "dependencies": {
15
+ "@ionic/react": "^7.0.0",
16
+ "@ionic/react-router": "^7.0.0",
17
+ "@svgr/webpack": "^8.1.0",
18
+ "@types/react-router": "^5.1.20",
19
+ "@types/react-router-dom": "^5.3.3",
20
+ "@typescript-eslint/eslint-plugin": "^6.18.1",
21
+ "@typescript-eslint/parser": "^5.62.0",
22
+ "axios": "^1.6.5",
23
+ "framer-motion": "^10.17.12",
24
+ "ionicons": "^7.0.0",
25
+ "prettier": "^2.8.8",
26
+ "react": "^18.2.0",
27
+ "react-dom": "^18.2.0",
28
+ "react-router": "^5.3.4",
29
+ "react-router-dom": "^5.3.4",
30
+ "typescript-eslint": "^0.0.1-alpha.0",
31
+ "vite-plugin-svgr": "^4.2.0"
32
+ },
33
+ "devDependencies": {
34
+ "@svgr/rollup": "^8.1.0",
35
+ "@testing-library/dom": ">=7.21.4",
36
+ "@testing-library/jest-dom": "^5.16.5",
37
+ "@testing-library/react": "^14.0.0",
38
+ "@testing-library/user-event": "^14.4.3",
39
+ "@types/react": "^18.0.27",
40
+ "@types/react-dom": "^18.0.10",
41
+ "@vitejs/plugin-legacy": "^5.0.0",
42
+ "@vitejs/plugin-react": "^4.0.1",
43
+ "cypress": "^13.5.0",
44
+ "eslint": "^8.56.0",
45
+ "eslint-plugin-react": "^7.32.2",
46
+ "jsdom": "^22.1.0",
47
+ "terser": "^5.4.0",
48
+ "typescript": "^4.9.5",
49
+ "vite": "^5.0.0",
50
+ "vitest": "^0.34.6"
51
+ },
52
+ "description": "An Ionic project"
53
+ }