Skip to content

Commit a613528

Browse files
committed
first post
0 parents  commit a613528

File tree

1,995 files changed

+112400
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,995 files changed

+112400
-0
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SKIP_PREFLIGHT_CHECK=true

.gitignore

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
/Documentation
12+
13+
# production
14+
/build
15+
16+
# misc
17+
.DS_Store
18+
.env.local
19+
.env.development.local
20+
.env.test.local
21+
.env.production.local
22+
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Showrunner React

jsconfig.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": "src",
4+
"paths": {
5+
"*": ["src/*"]
6+
}
7+
}
8+
}

package.json

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
{
2+
"name": "argon-dashboard-pro-react",
3+
"version": "1.1.0",
4+
"private": true,
5+
"dependencies": {
6+
"@fullcalendar/core": "4.4.0",
7+
"@fullcalendar/daygrid": "4.4.0",
8+
"@fullcalendar/interaction": "4.4.0",
9+
"@okta/okta-auth-js": "^4.4.0",
10+
"@okta/okta-react": "^4.1.0",
11+
"chart.js": "2.9.3",
12+
"classnames": "2.2.6",
13+
"dropzone": "5.7.0",
14+
"list.js": "1.5.0",
15+
"moment": "2.24.0",
16+
"node-sass": "4.13.1",
17+
"nouislider": "14.1.1",
18+
"prop-types": "15.7.2",
19+
"react": "16.12.0",
20+
"react-bootstrap-sweetalert": "5.1.9",
21+
"react-bootstrap-table-next": "3.3.5",
22+
"react-bootstrap-table2-paginator": "2.1.0",
23+
"react-bootstrap-table2-toolkit": "2.1.2",
24+
"react-chartjs-2": "2.9.0",
25+
"react-copy-to-clipboard": "5.0.2",
26+
"react-datetime": "2.16.3",
27+
"react-dom": "16.12.0",
28+
"react-google-maps": "9.4.5",
29+
"react-jvectormap": "0.0.15",
30+
"react-notification-alert": "0.0.12",
31+
"react-perfect-scrollbar": "1.5.8",
32+
"react-quill": "1.3.3",
33+
"react-router": "5.1.2",
34+
"react-router-dom": "5.1.2",
35+
"react-scripts": "3.4.0",
36+
"react-select2-wrapper": "1.0.4-beta6",
37+
"react-tagsinput": "3.19.0",
38+
"react-to-print": "2.5.1",
39+
"reactstrap": "8.4.1"
40+
},
41+
"scripts": {
42+
"start": "react-scripts start",
43+
"build": "react-scripts build",
44+
"test": "react-scripts test",
45+
"eject": "react-scripts eject",
46+
"install:clean": "rm -rf node_modules/ && rm -rf yarn.lock && yarn && yarn start",
47+
"compile-sass": "node-sass src/assets/scss/argon-dashboard-pro-react.scss src/assets/css/argon-dashboard-pro-react.css",
48+
"minify-sass": "node-sass src/assets/scss/argon-dashboard-pro-react.scss src/assets/css/argon-dashboard-pro-react.min.css --output-style compressed",
49+
"map-sass": "node-sass src/assets/scss/argon-dashboard-pro-react.scss src/assets/css/argon-dashboard-pro-react.css --source-map true"
50+
},
51+
"eslintConfig": {
52+
"extends": "react-app"
53+
},
54+
"browserslist": [
55+
">0.2%",
56+
"not dead",
57+
"not ie <= 11",
58+
"not op_mini all"
59+
],
60+
"devDependencies": {
61+
"@types/googlemaps": "3.39.2",
62+
"@types/markerclustererplus": "2.1.33",
63+
"@types/react": "16.9.21",
64+
"eslint-plugin-flowtype": "3.13.0",
65+
"gulp": "4.0.2",
66+
"gulp-append-prepend": "1.0.8",
67+
"typescript": "3.7.5"
68+
}
69+
}

public/apple-icon.png

2.39 KB
Loading

public/favicon.ico

1.12 KB
Binary file not shown.

public/index.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="en" class="perfect-scrollbar-off nav-open">
3+
<head>
4+
<meta charset="utf-8" />
5+
<meta
6+
name="viewport"
7+
content="width=device-width, initial-scale=1, shrink-to-fit=no"
8+
/>
9+
<meta name="theme-color" content="#000000" />
10+
<!--
11+
manifest.json provides metadata used when your web app is added to the
12+
homescreen on Android. See https://developers.google.com/web/fundamentals/engage-and-retain/web-app-manifest/
13+
-->
14+
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
15+
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
16+
<link
17+
rel="apple-touch-icon"
18+
sizes="76x76"
19+
href="%PUBLIC_URL%/apple-icon.png"
20+
/>
21+
<!-- Fonts -->
22+
<link
23+
rel="stylesheet"
24+
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700"
25+
/>
26+
<title>GopherCon</title>
27+
</head>
28+
<body class="g-sidenav-show g-sidenav-pinned">
29+
<noscript> You need to enable JavaScript to run this app. </noscript>
30+
<div id="root"></div>
31+
<!--
32+
This HTML file is a template.
33+
If you open it directly in the browser, you will see an empty page.
34+
35+
You can add webfonts, meta tags, or analytics to this file.
36+
The build step will place the bundled scripts into the <body> tag.
37+
38+
To begin the development, run `npm start` or `yarn start`.
39+
To create a production bundle, use `npm run build` or `yarn build`.
40+
-->
41+
</body>
42+
</html>

public/manifest.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"short_name": "GopherCon",
3+
"name": "GopherCon",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
}
10+
],
11+
"start_url": "./index.html",
12+
"display": "standalone",
13+
"theme_color": "#000000",
14+
"background_color": "#ffffff"
15+
}

0 commit comments

Comments
 (0)