Skip to content

Commit a152632

Browse files
committed
feat: add project setup with Next.js, TypeScript and Tailwind CSS
1 parent b43f5e9 commit a152632

17 files changed

+1883
-2
lines changed

.env.example

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

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# dependencies
2+
/node_modules
3+
4+
# testing
5+
/coverage
6+
7+
# next.js
8+
/.next/
9+
/out/
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
*.pem
17+
18+
# env files
19+
.env*
20+
!.env.example
21+
22+
# vercel
23+
.vercel
24+
25+
# typescript
26+
*.tsbuildinfo
27+
next-env.d.ts

.prettierrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"arrowParens": "always",
3+
"endOfLine": "crlf",
4+
"semi": true,
5+
"singleQuote": true,
6+
"tabWidth": 2,
7+
"trailingComma": "all",
8+
"useTabs": false,
9+
"plugins": ["prettier-plugin-tailwindcss"]
10+
}

.vscode/settings.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"prettier.arrowParens": "avoid",
3+
"prettier.endOfLine": "crlf",
4+
5+
"files.associations": {
6+
"*.css": "tailwindcss",
7+
"*.scss": "tailwindcss"
8+
},
9+
"files.eol": "\r\n"
10+
}

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
1-
# fin
2-
Finance monitoring assistant - helps users track their expenses, manage budgets, and receive financial insights directly via Telegram.
1+
<h1 align="center">
2+
<samp>Fin</samp>
3+
</h1>
4+
5+
<p align="center">
6+
Finance monitoring assistant - helps users track their expenses, manage budgets and receive financial insights directly via Telegram.
7+
</p>

package.json

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"name": "fin",
3+
"version": "1.0.0",
4+
"private": true,
5+
"description": "helps users track their expenses, manage budgets and receive financial insights directly via Telegram.",
6+
"scripts": {
7+
"dev": "next dev",
8+
"build": "next build",
9+
"start": "next start",
10+
"lint": "next lint"
11+
},
12+
"keywords": [
13+
"finance",
14+
"finance-management",
15+
"telegram-mini-app"
16+
],
17+
"author": "Mukhammaddiyor Takhirov <opensource@takhirov.uz>",
18+
"license": "GPL-3.0-only",
19+
"dependencies": {
20+
"geist": "^1.3.1",
21+
"next": "^14.2.15",
22+
"react": "^18.3.1",
23+
"react-dom": "^18.3.1",
24+
"tailwindcss": "^3.4.14",
25+
"typescript": "^5.6.3"
26+
},
27+
"devDependencies": {
28+
"@types/node": "^22.7.6",
29+
"@types/react": "^18.3.11",
30+
"autoprefixer": "^10.4.20",
31+
"clsx": "^2.1.1",
32+
"eslint": "^9.12.0",
33+
"postcss": "^8.4.47",
34+
"prettier-plugin-tailwindcss": "^0.6.8",
35+
"tailwind-merge": "^2.5.4"
36+
}
37+
}
38+

0 commit comments

Comments
 (0)