Skip to content

Commit

Permalink
chore: main file
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleepy4k committed Jun 27, 2023
1 parent cbcc9e6 commit 4447ac9
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Scholarmate user interface using solidjs framework with tailwind and typescript

## Tech Stack

**Client:** SolidJS, Axios, Sweetalert, Toaster
**Client:** SolidJS, Axios, Sweetalert, Toaster, Form Validator

## Features

Expand Down Expand Up @@ -70,6 +70,7 @@ To run this project, you will need to add the following environment variables to
- [Axios](https://axios-http.com/docs/intro)
- [Sweetalert](https://sweetalert.js.org/guides/)
- [Toaster](https://github.com/ardeora/solid-toast#readme)
- [Form Validator](https://github.com/jorroll/solid-forms#readme)

## Feedback

Expand Down
30 changes: 26 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,32 @@
{
"name": "vite-template-solid",
"name": "scholarmate",
"version": "1.0.0",
"description": "",
"description": "Scholarmate user interface using solidjs framework with tailwind and typescript",
"private": true,
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Sleepy4k",
"keywords": [
"solidjs",
"vite",
"typescript",
"tailwindcss"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sleepy4k/solidjs-scholarmate.git"
},
"bugs": {
"url": "https://github.com/Sleepy4k/solidjs-scholarmate.git"
},
"homepage": "https://github.com/Sleepy4k/solidjs-scholarmate.git",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
Expand All @@ -34,14 +49,21 @@
"@suid/material": "^0.12.3",
"ag-grid-community": "28.2.0",
"ag-grid-solid": "28.2.0",
"apexcharts": "^3.35.4",
"axios": "^1.4.0",
"path": "^0.12.7",
"solid-forms": "^0.4.8",
"solid-icons": "^1.0.8",
"solid-js": "^1.7.6",
"solid-toast": "^0.5.0",
"sweetalert": "^2.1.2",
"swiper": "^8.3.0",
"url": "^0.11.1"
},
"resolutions": {
"solid-js": "^1.7.6"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}
1 change: 1 addition & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-undef */
module.exports = {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
plugins: {
Expand Down
5 changes: 2 additions & 3 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@ const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

export default defineConfig({
plugins: [
solidPlugin(),
],
plugins: [solidPlugin()],
resolve: {
alias: {
'@': resolve(__dirname, './src'),
Expand All @@ -21,6 +19,7 @@ export default defineConfig({
}
},
server: {
host: true,
port: 3000,
},
build: {
Expand Down

0 comments on commit 4447ac9

Please sign in to comment.