Skip to content

Commit 7a878e1

Browse files
committed
update package.json
1 parent eeb246f commit 7a878e1

16 files changed

+43263
-958
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM node:18-alpine
22
WORKDIR /app
3-
COPY package.json ./
4-
RUN npm install
3+
COPY package.json package-lock.json ./
4+
RUN rm -rf node_modules && npm install --legacy-peer-deps
55
COPY . .
6+
RUN npm run build
67
CMD ["npm", "start"]
7-
EXPOSE 3000

dist/assets/index-B1f_hSLR.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/index-COjAeYQr.js

Lines changed: 542 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/dataset.gexf

Lines changed: 39182 additions & 0 deletions
Large diffs are not rendered by default.

dist/deepgit_logo.png

50.4 KB
Loading

dist/dxl_logo.png

7.81 KB
Loading

dist/favicon.ico

14.7 KB
Binary file not shown.

dist/index.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
7+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<meta name="theme-color" content="#000000" />
10+
<meta name="description" content="A web application to share network visualizations" />
11+
<title>DeepGit</title>
12+
<script type="module" crossorigin src="/deepgit/assets/index-COjAeYQr.js"></script>
13+
<link rel="stylesheet" crossorigin href="/deepgit/assets/index-B1f_hSLR.css">
14+
</head>
15+
16+
<body>
17+
<noscript>You need to enable JavaScript to run this app.</noscript>
18+
<div id="root"></div>
19+
<div id="portal-target"></div>
20+
</body>
21+
22+
</html>

dist/logic_tag_clusters.gexf

Lines changed: 3142 additions & 0 deletions
Large diffs are not rendered by default.

dist/manifest.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"short_name": "Retina",
3+
"name": "A web application to share network visualizations",
4+
"start_url": ".",
5+
"display": "standalone",
6+
"theme_color": "#000000",
7+
"background_color": "#ffffff"
8+
}

dist/ossci_logo.jpg

3.55 KB
Loading

dist/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

index.html

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="utf-8" />
5-
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
6-
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1" />
8-
<meta name="theme-color" content="#000000" />
9-
<meta name="description" content="A web application to share network visualizations" />
10-
<title>Retina</title>
11-
</head>
12-
<body>
13-
<noscript>You need to enable JavaScript to run this app.</noscript>
14-
<div id="root"></div>
15-
<div id="portal-target"></div>
16-
<script type="module" src="/src/index.tsx"></script>
17-
</body>
18-
</html>
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
7+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
8+
<meta name="viewport" content="width=device-width, initial-scale=1" />
9+
<meta name="theme-color" content="#000000" />
10+
<meta name="description" content="A web application to share network visualizations" />
11+
<title>DeepGit</title>
12+
</head>
13+
14+
<body>
15+
<noscript>You need to enable JavaScript to run this app.</noscript>
16+
<div id="root"></div>
17+
<div id="portal-target"></div>
18+
<script type="module" src="/src/index.tsx"></script>
19+
</body>
20+
21+
</html>

0 commit comments

Comments
 (0)