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 42c4832 commit 41003d4
Show file tree
Hide file tree
Showing 6 changed files with 1,087 additions and 637 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
node_modules
dist
.env
.vscode
package-lock.json
/.vscode
/dist
/node_modules
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>SolidJS Project</title>
<title>Solid App</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script src="./src/index.tsx" type="module"></script>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>
27 changes: 18 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,25 @@
"description": "",
"scripts": {
"start": "vite",
"dev": "vite --mode development",
"dev": "vite",
"build": "vite build",
"serve": "vite preview"
"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"
},
"license": "MIT",
"devDependencies": {
"autoprefixer": "^10.4.7",
"postcss": "^8.4.23",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"eslint-plugin-solid": "^0.12.1",
"postcss": "^8.4.24",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite-plugin-solid": "^2.5.0"
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-solid": "^2.7.0"
},
"dependencies": {
"@amcharts/amcharts4": "^4.10.35",
Expand All @@ -29,10 +36,12 @@
"ag-grid-solid": "28.2.0",
"apexcharts": "^3.35.4",
"axios": "^1.4.0",
"path": "^0.12.7",
"solid-icons": "^1.0.8",
"solid-js": "^1.7.3",
"solid-js": "^1.7.6",
"solid-toast": "^0.5.0",
"sweetalert": "^2.1.2",
"swiper": "^8.3.0"
"swiper": "^8.3.0",
"url": "^0.11.1"
}
}
Loading

0 comments on commit 41003d4

Please sign in to comment.