Add files via upload

This commit is contained in:
2024-07-17 14:39:04 +05:00
committed by GitHub
parent be0b64a3c6
commit 3751382bfc
10 changed files with 3280 additions and 0 deletions

16
.babelrc Normal file
View File

@@ -0,0 +1,16 @@
{
"presets": [
[
"next/babel",
{
"preset-env": {
"modules": false
},
"transform-runtime": {},
"styled-jsx": {},
"class-properties": {}
}
]
],
"plugins": []
}

5
.eslintignore Normal file
View File

@@ -0,0 +1,5 @@
.next
.husky
node_modules/**
public
out

38
.gitignore vendored Normal file
View File

@@ -0,0 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# local env files
.env
.env.local
.env.development.local
.env.test.local
.env.production.local
# vercel
.vercel
# typescript
*.tsbuildinfo

6
.prettierignore Normal file
View File

@@ -0,0 +1,6 @@
node_modules/**
.next/**
.husky/**
# Ignore all JS files:
**/*.js

11
.prettierrc Normal file
View File

@@ -0,0 +1,11 @@
{
"printWidth": 120,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always",
"proseWrap": "preserve",
"jsxBracketSameLine": false,
"bracketSpacing": true,
"tabWidth": 2,
"semi": true
}

5
next-env.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.

9
next.config.js Normal file
View File

@@ -0,0 +1,9 @@
const dotenv = require("dotenv");
dotenv.config();
const env = {}
module.exports = {
publicRuntimeConfig: env,
};

46
package.json Normal file
View File

@@ -0,0 +1,46 @@
{
"name": "anixart-mode",
"version": "1.0.0",
"main": "index.js",
"author": "Frolov Vlad <vladfrolov.dev@gmail.com> (https://github.com/vladis1av)",
"license": "ISC",
"private": true,
"scripts": {
"dev": "next dev -p 6677",
"start": "next start -p 6677",
"build": "next build"
},
"dependencies": {
"axios": "^1.6.8",
"clsx": "^1.2.1",
"dotenv": "^16.0.3",
"next": "^12.3.4",
"nextjs-progressbar": "^0.0.14",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/eslint-parser": "^7.18.9",
"@types/node": "^18.15.10",
"@types/react": "^18.0.29",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-plugin-import": "^1.13.5",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^12.2.5",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
}
}

81
tsconfig.json Normal file
View File

@@ -0,0 +1,81 @@
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": "./",
"paths": {
"@/*": [
"/src"
],
"@redux/*": [
"./src/redux/*"
],
"@ui/*": [
"./src/ui/*"
],
"@components/*": [
"./src/components/*"
],
"@constants/*": [
"./src/constants/*"
],
"@enums/*": [
"./src/enums/*"
],
"@interfaces/*": [
"./src/interfaces/*"
],
"@typeGuards/*": [
"./src/typeGuards/*"
],
"@layouts/*": [
"./src/layouts/*"
],
"@pages/*": [
"./src/pages/*"
],
"@services/*": [
"./src/services/*"
],
"@hooks/*": [
"./src/hooks/*"
],
"@styles/*": [
"./src/styles/*"
],
"@utils/*": [
"./src/utils/*"
],
"@assets/*": [
"./src/assets/*"
]
}
},
"exclude": [
"node_modules",
".next",
".husky"
],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
]
}

3063
yarn.lock Normal file

File diff suppressed because it is too large Load Diff