Skip to content

Commit 2f84393

Browse files
committed
feat: 🎉 Criado projeto base
Configurado base do react, eslint, tokens e tsconfig
0 parents  commit 2f84393

26 files changed

+2705
-0
lines changed

.gitignore

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
# dependencies
2+
/node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# testing
7+
/coverage
8+
9+
# next.js
10+
/.next/
11+
/out/
12+
13+
# production
14+
/build
15+
16+
# misc
17+
.DS_Store
18+
*.pem
19+
20+
# debug
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*
24+
25+
# local env files
26+
.env.local
27+
.env.development.local
28+
.env.test.local
29+
.env.production.local
30+
31+
# vercel
32+
.vercel
33+
# Logs
34+
logs
35+
*.log
36+
npm-debug.log*
37+
yarn-debug.log*
38+
yarn-error.log*
39+
lerna-debug.log*
40+
.pnpm-debug.log*
41+
42+
# Diagnostic reports (https://nodejs.org/api/report.html)
43+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
44+
45+
# Runtime data
46+
pids
47+
*.pid
48+
*.seed
49+
*.pid.lock
50+
51+
# Directory for instrumented libs generated by jscoverage/JSCover
52+
lib-cov
53+
54+
# Coverage directory used by tools like istanbul
55+
coverage
56+
*.lcov
57+
58+
# nyc test coverage
59+
.nyc_output
60+
61+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
62+
.grunt
63+
64+
# Bower dependency directory (https://bower.io/)
65+
bower_components
66+
67+
# node-waf configuration
68+
.lock-wscript
69+
70+
# Compiled binary addons (https://nodejs.org/api/addons.html)
71+
build/Release
72+
73+
# Dependency directories
74+
node_modules/
75+
jspm_packages/
76+
77+
# Snowpack dependency directory (https://snowpack.dev/)
78+
web_modules/
79+
80+
# TypeScript cache
81+
*.tsbuildinfo
82+
83+
# Optional npm cache directory
84+
.npm
85+
86+
# Optional eslint cache
87+
.eslintcache
88+
89+
# Microbundle cache
90+
.rpt2_cache/
91+
.rts2_cache_cjs/
92+
.rts2_cache_es/
93+
.rts2_cache_umd/
94+
95+
# Optional REPL history
96+
.node_repl_history
97+
98+
# Output of 'npm pack'
99+
*.tgz
100+
101+
# Yarn Integrity file
102+
.yarn-integrity
103+
104+
# dotenv environment variables file
105+
.env
106+
.env.test
107+
.env.production
108+
109+
# parcel-bundler cache (https://parceljs.org/)
110+
.cache
111+
.parcel-cache
112+
113+
# Next.js build output
114+
.next
115+
out
116+
117+
# Nuxt.js build / generate output
118+
.nuxt
119+
dist
120+
121+
# Gatsby files
122+
.cache/
123+
# Comment in the public line in if your project uses Gatsby and not Next.js
124+
# https://nextjs.org/blog/next-9-1#public-directory-support
125+
# public
126+
127+
# vuepress build output
128+
.vuepress/dist
129+
130+
# Serverless directories
131+
.serverless/
132+
133+
# FuseBox cache
134+
.fusebox/
135+
136+
# DynamoDB Local files
137+
.dynamodb/
138+
139+
# TernJS port file
140+
.tern-port
141+
142+
# Stores VSCode versions used for testing VSCode extensions
143+
.vscode-test
144+
145+
# yarn v2
146+
.yarn/cache
147+
.yarn/unplugged
148+
.yarn/build-state.yml
149+
.yarn/install-state.gz
150+
.pnp.*

.tool-versions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 22.1.0

README.md

Whitespace-only changes.

0 commit comments

Comments
 (0)