Skip to content

Commit a874ee4

Browse files
committed
init commit
0 parents  commit a874ee4

11 files changed

Lines changed: 2778 additions & 0 deletions

File tree

.gitignore

Lines changed: 138 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
# Dependencies
2+
node_modules/
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
pnpm-debug.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Coverage directory used by tools like istanbul
15+
coverage/
16+
*.lcov
17+
18+
# nyc test coverage
19+
.nyc_output
20+
21+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
22+
.grunt
23+
24+
# Bower dependency directory (https://bower.io/)
25+
bower_components
26+
27+
# node-waf configuration
28+
.lock-wscript
29+
30+
# Compiled binary addons (https://nodejs.org/api/addons.html)
31+
build/Release
32+
33+
# Dependency directories
34+
jspm_packages/
35+
36+
# TypeScript cache
37+
*.tsbuildinfo
38+
39+
# Optional npm cache directory
40+
.npm
41+
42+
# Optional eslint cache
43+
.eslintcache
44+
45+
# Optional stylelint cache
46+
.stylelintcache
47+
48+
# Microbundle cache
49+
.rpt2_cache/
50+
.rts2_cache_cjs/
51+
.rts2_cache_es/
52+
.rts2_cache_umd/
53+
54+
# Optional REPL history
55+
.node_repl_history
56+
57+
# Output of 'npm pack'
58+
*.tgz
59+
60+
# Yarn Integrity file
61+
.yarn-integrity
62+
63+
# dotenv environment variables file
64+
.env
65+
.env.local
66+
.env.development.local
67+
.env.test.local
68+
.env.production.local
69+
70+
# parcel-bundler cache (https://parceljs.org/)
71+
.cache
72+
.parcel-cache
73+
74+
# Next.js build output
75+
.next
76+
77+
# Nuxt.js build / generate output
78+
.nuxt
79+
dist
80+
81+
# Storybook build outputs
82+
.out
83+
.storybook-out
84+
85+
# Temporary folders
86+
tmp/
87+
temp/
88+
89+
# Runtime data
90+
*.log
91+
logs
92+
93+
# Database files
94+
*.db
95+
*.sqlite
96+
*.sqlite3
97+
events.db*
98+
99+
# OS generated files
100+
.DS_Store
101+
.DS_Store?
102+
._*
103+
.Spotlight-V100
104+
.Trashes
105+
ehthumbs.db
106+
Thumbs.db
107+
108+
# Editor directories and files
109+
.vscode/
110+
.idea/
111+
*.swp
112+
*.swo
113+
*~
114+
115+
# pm2 logs
116+
ecosystem.config.js
117+
pm2.log
118+
119+
# Build outputs
120+
build/
121+
dist/
122+
123+
# Test coverage
124+
test-results/
125+
coverage/
126+
127+
# Backup files
128+
*.backup
129+
*.bak
130+
131+
# Local development
132+
.env.local
133+
config/local.json
134+
135+
# Analytics data (optional - uncomment if you want to exclude analytics data)
136+
# events.db
137+
# *.db-wal
138+
# *.db-shm

0 commit comments

Comments
 (0)