Skip to content

Commit ad95c2b

Browse files
author
Mike Ngu
committed
initial commit
0 parents  commit ad95c2b

19 files changed

+12722
-0
lines changed

.env.development

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NODE_ENV=development

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NODE_ENV=production

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/dist

.eslintrc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"extends": [
3+
"@clearc2/c2-react"
4+
]
5+
}

.gitattributes

+195
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,195 @@
1+
## GITATTRIBUTES FOR WEB PROJECTS
2+
#
3+
# These settings are for any web project.
4+
#
5+
# Details per file setting:
6+
# text These files should be normalized (i.e. convert CRLF to LF).
7+
# binary These files are binary and should be left untouched.
8+
#
9+
# Note that binary is a macro for -text -diff.
10+
######################################################################
11+
12+
## AUTO-DETECT
13+
## Handle line endings automatically for files detected as
14+
## text and leave all files detected as binary untouched.
15+
## This will handle all files NOT defined below.
16+
* text=auto
17+
18+
## SOURCE CODE
19+
*.bat text eol=crlf
20+
*.coffee text
21+
*.css text
22+
*.htm text
23+
*.html text
24+
*.inc text
25+
*.ini text
26+
*.js text
27+
*.json text
28+
*.jsx text
29+
*.less text
30+
*.od text
31+
*.onlydata text
32+
*.php text
33+
*.pl text
34+
*.py text
35+
*.rb text
36+
*.sass text
37+
*.scm text
38+
*.scss text
39+
*.sh text eol=lf
40+
*.sql text
41+
*.styl text
42+
*.tag text
43+
*.ts text
44+
*.tsx text
45+
*.xml text
46+
*.xhtml text
47+
48+
## DOCKER
49+
*.dockerignore text
50+
Dockerfile text
51+
52+
## DOCUMENTATION
53+
*.markdown text
54+
*.md text
55+
*.mdwn text
56+
*.mdown text
57+
*.mkd text
58+
*.mkdn text
59+
*.mdtxt text
60+
*.mdtext text
61+
*.txt text
62+
AUTHORS text
63+
CHANGELOG text
64+
CHANGES text
65+
CONTRIBUTING text
66+
COPYING text
67+
copyright text
68+
*COPYRIGHT* text
69+
INSTALL text
70+
license text
71+
LICENSE text
72+
NEWS text
73+
readme text
74+
*README* text
75+
TODO text
76+
77+
## TEMPLATES
78+
*.dot text
79+
*.ejs text
80+
*.haml text
81+
*.handlebars text
82+
*.hbs text
83+
*.hbt text
84+
*.jade text
85+
*.latte text
86+
*.mustache text
87+
*.njk text
88+
*.phtml text
89+
*.tmpl text
90+
*.tpl text
91+
*.twig text
92+
93+
## LINTERS
94+
.csslintrc text
95+
.eslintrc text
96+
.eslintignore text
97+
.htmlhintrc text
98+
.jscsrc text
99+
.jshintrc text
100+
.jshintignore text
101+
.stylelintrc text
102+
.babelrc text
103+
104+
## CONFIGS
105+
*.bowerrc text
106+
*.cnf text
107+
*.conf text
108+
*.config text
109+
.browserslistrc text
110+
.editorconfig text
111+
.gitattributes text
112+
.gitconfig text
113+
.htaccess text
114+
*.npmignore text
115+
*.yaml text
116+
*.yml text
117+
browserslist text
118+
Makefile text
119+
makefile text
120+
.yarnrc text
121+
yarn.lock text
122+
123+
## GRAPHICS
124+
*.ai binary
125+
*.bmp binary
126+
*.eps binary
127+
*.gif binary
128+
*.ico binary
129+
*.jng binary
130+
*.jp2 binary
131+
*.jpg binary
132+
*.jpeg binary
133+
*.jpx binary
134+
*.jxr binary
135+
*.pdf binary
136+
*.png binary
137+
*.psb binary
138+
*.psd binary
139+
*.svg text
140+
*.svgz binary
141+
*.tif binary
142+
*.tiff binary
143+
*.wbmp binary
144+
*.webp binary
145+
146+
## AUDIO
147+
*.kar binary
148+
*.m4a binary
149+
*.mid binary
150+
*.midi binary
151+
*.mp3 binary
152+
*.ogg binary
153+
*.ra binary
154+
155+
## VIDEO
156+
*.3gpp binary
157+
*.3gp binary
158+
*.as binary
159+
*.asf binary
160+
*.asx binary
161+
*.fla binary
162+
*.flv binary
163+
*.m4v binary
164+
*.mng binary
165+
*.mov binary
166+
*.mp4 binary
167+
*.mpeg binary
168+
*.mpg binary
169+
*.ogv binary
170+
*.swc binary
171+
*.swf binary
172+
*.webm binary
173+
174+
## ARCHIVES
175+
*.7z binary
176+
*.gz binary
177+
*.jar binary
178+
*.rar binary
179+
*.tar binary
180+
*.zip binary
181+
182+
## FONTS
183+
*.ttf binary
184+
*.eot binary
185+
*.otf binary
186+
*.woff binary
187+
*.woff2 binary
188+
189+
## EXECUTABLES
190+
*.exe binary
191+
*.pyc binary
192+
193+
## NPM OVERRIDE BECAUSE OF https://github.com/npm/npm/issues/17161
194+
package.json text eol=lf
195+
package-lock.json text eol=lf

.gitignore

+78
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
node_modules/
2+
.next
3+
dist/
4+
5+
# Logs
6+
logs
7+
*.log
8+
npm-debug.log*
9+
yarn-debug.log*
10+
yarn-error.log*
11+
12+
# JetBrains
13+
.idea
14+
15+
# Windows Files - Start
16+
# Windows thumbnail cache files
17+
Thumbs.db
18+
ehthumbs.db
19+
ehthumbs_vista.db
20+
21+
# Dump file
22+
*.stackdump
23+
24+
# Folder config file
25+
[Dd]esktop.ini
26+
27+
# Recycle Bin used on file shares
28+
$RECYCLE.BIN/
29+
30+
# Windows Installer files
31+
*.cab
32+
*.msi
33+
*.msm
34+
*.msp
35+
36+
# Windows shortcuts
37+
*.lnk
38+
# Windows Files - End
39+
40+
# macOS - Start
41+
# General
42+
.DS_Store
43+
.AppleDouble
44+
.LSOverride
45+
46+
# Icon must end with two \r
47+
Icon
48+
49+
# Thumbnails
50+
._*
51+
52+
# Files that might appear in the root of a volume
53+
.DocumentRevisions-V100
54+
.fseventsd
55+
.Spotlight-V100
56+
.TemporaryItems
57+
.Trashes
58+
.VolumeIcon.icns
59+
.com.apple.timemachine.donotpresent
60+
61+
# Directories potentially created on remote AFP share
62+
.AppleDB
63+
.AppleDesktop
64+
Network Trash Folder
65+
Temporary Items
66+
.apdisk
67+
# macOs - End
68+
69+
# Visual Studio Files
70+
.vs
71+
.vscode
72+
73+
# SSR directory
74+
public/
75+
build/
76+
77+
# dotenv environment variables file
78+
.env

babel.config.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
const presets = [
2+
['@babel/env', {targets: {node: 'current'}}],
3+
require.resolve('@babel/preset-react')
4+
]
5+
6+
const plugins = [
7+
'@babel/plugin-proposal-class-properties'
8+
]
9+
10+
const ignore = []
11+
12+
module.exports = {
13+
presets,
14+
plugins,
15+
ignore
16+
}

0 commit comments

Comments
 (0)