Skip to content

Commit bff42dd

Browse files
Jasper GabrielJasper Gabriel
Jasper Gabriel
authored and
Jasper Gabriel
committed
initial commit
0 parents  commit bff42dd

27 files changed

+18714
-0
lines changed

.commitlintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"]
3+
}

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.aws-sam

.eslintrc.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 2020,
6+
"sourceType": "module"
7+
},
8+
"plugins": ["@typescript-eslint", "prettier"],
9+
"extends": ["prettier", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"],
10+
"rules": {
11+
"no-console": "off",
12+
"prettier/prettier": [
13+
"error",
14+
{
15+
"endOfLine": "auto"
16+
}
17+
],
18+
"@typescript-eslint/no-explicit-any": "off",
19+
"@typescript-eslint/no-inferrable-types": "off"
20+
},
21+
"settings": {
22+
"import/resolver": {
23+
"typescript": {}
24+
}
25+
}
26+
}

.gitignore

+212
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,212 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/osx,node,linux,windows,sam
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=osx,node,linux,windows,sam
4+
5+
### Linux ###
6+
*~
7+
8+
# temporary files which can be created if a process still has a handle open of a deleted file
9+
.fuse_hidden*
10+
11+
# KDE directory preferences
12+
.directory
13+
14+
# Linux trash folder which might appear on any partition or disk
15+
.Trash-*
16+
17+
# .nfs files are created when an open file is removed but is still being accessed
18+
.nfs*
19+
20+
### Node ###
21+
# Logs
22+
logs
23+
*.log
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
lerna-debug.log*
28+
29+
# Diagnostic reports (https://nodejs.org/api/report.html)
30+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
31+
32+
# Runtime data
33+
pids
34+
*.pid
35+
*.seed
36+
*.pid.lock
37+
38+
# Directory for instrumented libs generated by jscoverage/JSCover
39+
lib-cov
40+
41+
# Coverage directory used by tools like istanbul
42+
coverage
43+
*.lcov
44+
45+
# nyc test coverage
46+
.nyc_output
47+
48+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
49+
.grunt
50+
51+
# Bower dependency directory (https://bower.io/)
52+
bower_components
53+
54+
# node-waf configuration
55+
.lock-wscript
56+
57+
# Compiled binary addons (https://nodejs.org/api/addons.html)
58+
build/Release
59+
60+
# Dependency directories
61+
node_modules/
62+
jspm_packages/
63+
64+
# AWS DynamoDB local docker
65+
docker/
66+
67+
# TypeScript v1 declaration files
68+
typings/
69+
70+
# TypeScript cache
71+
*.tsbuildinfo
72+
73+
# Optional npm cache directory
74+
.npm
75+
76+
# Optional eslint cache
77+
.eslintcache
78+
79+
# Optional stylelint cache
80+
.stylelintcache
81+
82+
# Microbundle cache
83+
.rpt2_cache/
84+
.rts2_cache_cjs/
85+
.rts2_cache_es/
86+
.rts2_cache_umd/
87+
88+
# Optional REPL history
89+
.node_repl_history
90+
91+
# Output of 'npm pack'
92+
*.tgz
93+
94+
# Yarn Integrity file
95+
.yarn-integrity
96+
97+
# dotenv environment variables file
98+
.env
99+
.env.test
100+
.env*.local
101+
.env.json
102+
103+
# parcel-bundler cache (https://parceljs.org/)
104+
.cache
105+
.parcel-cache
106+
107+
# Next.js build output
108+
.next
109+
110+
# Nuxt.js build / generate output
111+
.nuxt
112+
dist
113+
114+
# Storybook build outputs
115+
.out
116+
.storybook-out
117+
storybook-static
118+
119+
# rollup.js default build output
120+
dist/
121+
122+
# Gatsby files
123+
.cache/
124+
# Comment in the public line in if your project uses Gatsby and not Next.js
125+
# https://nextjs.org/blog/next-9-1#public-directory-support
126+
# public
127+
128+
# vuepress build output
129+
.vuepress/dist
130+
131+
# Serverless directories
132+
.serverless/
133+
134+
# FuseBox cache
135+
.fusebox/
136+
137+
# DynamoDB Local files
138+
.dynamodb/
139+
140+
# TernJS port file
141+
.tern-port
142+
143+
# Stores VSCode versions used for testing VSCode extensions
144+
.vscode-test
145+
146+
# Temporary folders
147+
tmp/
148+
temp/
149+
150+
### OSX ###
151+
# General
152+
.DS_Store
153+
.AppleDouble
154+
.LSOverride
155+
156+
# Icon must end with two \r
157+
Icon
158+
159+
160+
# Thumbnails
161+
._*
162+
163+
# Files that might appear in the root of a volume
164+
.DocumentRevisions-V100
165+
.fseventsd
166+
.Spotlight-V100
167+
.TemporaryItems
168+
.Trashes
169+
.VolumeIcon.icns
170+
.com.apple.timemachine.donotpresent
171+
172+
# Directories potentially created on remote AFP share
173+
.AppleDB
174+
.AppleDesktop
175+
Network Trash Folder
176+
Temporary Items
177+
.apdisk
178+
179+
### SAM ###
180+
# Ignore build directories for the AWS Serverless Application Model (SAM)
181+
# Info: https://aws.amazon.com/serverless/sam/
182+
# Docs: https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-reference.html
183+
184+
**/.aws-sam
185+
186+
### Windows ###
187+
# Windows thumbnail cache files
188+
Thumbs.db
189+
Thumbs.db:encryptable
190+
ehthumbs.db
191+
ehthumbs_vista.db
192+
193+
# Dump file
194+
*.stackdump
195+
196+
# Folder config file
197+
[Dd]esktop.ini
198+
199+
# Recycle Bin used on file shares
200+
$RECYCLE.BIN/
201+
202+
# Windows Installer files
203+
*.cab
204+
*.msi
205+
*.msix
206+
*.msm
207+
*.msp
208+
209+
# Windows shortcuts
210+
*.lnk
211+
212+
# End of https://www.toptal.com/developers/gitignore/api/osx,node,linux,windows,sam

.gitmodules

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[submodule "layers/common-layer"]
2+
path = layers/common-layer
3+
url = [email protected]:kshyun28/common-layer.git
4+
[submodule "layers/node-layer"]
5+
path = layers/node-layer
6+
url = [email protected]:kshyun28/node-layer.git

.husky/commit-msg

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npx commitlint --edit $1

.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
yarn lint-staged

.lintstagedrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"*.ts": ["npm run format", "npm run lint:fix"]
3+
}

.npmignore

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

.prettierrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"printWidth": 150,
3+
"tabWidth": 4,
4+
"singleQuote": true,
5+
"trailingComma": "all",
6+
"semi": true,
7+
"arrowParens": "avoid"
8+
}

0 commit comments

Comments
 (0)