Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
markblaize committed Sep 16, 2023
1 parent f1b72e1 commit 870a34d
Show file tree
Hide file tree
Showing 63 changed files with 7,443 additions and 1 deletion.
46 changes: 45 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,45 @@
# sui_haack_2023_fe
# NextJS APP

## Table of Contents
* [General Info](#general-information)
* [Technologies Used](#technologies-used)
* [UI](#ui)
* [Features](#features)
* [Setup](#setup)
<!-- * [License](#license) -->


## General Information
- Provide general information about your project here.


## Technologies Used
- React - version 18.2.0
- Next.js - version 13.4.4
- Node - version 20.2.5

## UI
- [Chakra UI](https://chakra-ui.com/) - version 2.7.0

## Features
- Prettier - version 2.4.2
- ESLint - version 8.42.0
- React Hook Form - version 7.44.93
- React Query - version 3.39.3
- Axios - version 1.4.0


## Setup
- [Deployment Next.js](https://nextjs.org/docs/deployment)


## Getting Started

First, run the development server:

```bash
pnpm dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

10 changes: 10 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@look/*": ["src/look/*"],
"@pages/*": ["src/layout/pages/*"],
"@utils/*": ["src/utils/*"]
}
}
}
5 changes: 5 additions & 0 deletions next-env.d.ts
Original file line number Diff line number Diff line change
@@ -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.
8 changes: 8 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
i18n: {
locales: ['en', 'ua', 'ru'],
defaultLocale: 'ru',
},
};
53 changes: 53 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"name": "sui hack 2023",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.1.1",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.7.0",
"@chakra-ui/system": "^2.5.8",
"@chakra-ui/theme": "^3.1.2",
"@chakra-ui/theme-tools": "^2.0.18",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.10.4",
"@mysten/sui.js": "^0.41.2",
"@mysten/wallet-kit": "^0.7.2",
"@types/node": "^20.2.5",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"axios": "^1.4.0",
"bignumber.js": "^9.1.2",
"classnames": "^2.3.1",
"eslint": "^8.42.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"framer-motion": "^7.5.1",
"i18n": "0.14.2",
"js-sha3": "^0.9.1",
"next": "^13.4.4",
"next-compose-plugins": "^2.2.1",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-query": "^3.39.3",
"sass": "^1.62.1",
"typescript": "^5.1.3"
},
"engines": {
"node": ">=16",
"npm": "please-use-pnpm",
"yarn": "please-use-pnpm",
"pnpm": ">=7.1.0"
}
}
Loading

0 comments on commit 870a34d

Please sign in to comment.