Skip to content

Commit 39e1397

Browse files
committed
feat: support PWA
1 parent 9475682 commit 39e1397

14 files changed

Lines changed: 2531 additions & 290 deletions

File tree

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--** github: https://github.com/sabeerbikba/dev.tools **-->
2-
<!doctype html>
2+
<!DOCTYPE html>
33
<html lang="en">
44

55
<head>

package.json

Lines changed: 81 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,83 @@
11
{
2-
"name": "dev.tools",
3-
"version": "0.0.24",
4-
"description": "A collection of useful developer tools built with React.",
5-
"homepage": "https://devtools-sabeerbikba.vercel.app",
6-
"repository": "https://github.com/sabeerbikba/dev.tools",
7-
"author": "sabeer bikba <sabeerbikba02@gmail.com>",
8-
"type": "module",
9-
"license": "MIT",
10-
"scripts": {
11-
"dev": "vite",
12-
"styles": "npx @tailwindcss/cli -m -i ./src/styles/styles.css -o ./src/styles/output.css --watch",
13-
"dev-p": "run-p dev styles",
14-
"build": "vite build",
15-
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
16-
"preview": "vite preview"
17-
},
18-
"dependencies": {
19-
"@babel/standalone": "^7.24.5",
20-
"@grapesjs/react": "^1.0.0",
21-
"@monaco-editor/react": "^4.6.0",
22-
"@vercel/analytics": "^1.3.0",
23-
"blurhash": "^2.0.5",
24-
"clsx": "^2.1.1",
25-
"crypto-js": "^4.2.0",
26-
"exifr": "^7.1.3",
27-
"github-markdown-css": "^5.5.1",
28-
"grapesjs": "^0.19.5",
29-
"grapesjs-blocks-basic": "^1.0.2",
30-
"grapesjs-custom-code": "^1.0.2",
31-
"grapesjs-plugin-export": "^1.0.12",
32-
"grapesjs-plugin-forms": "^2.0.6",
33-
"grapesjs-preset-newsletter": "^1.0.2",
34-
"grapesjs-preset-webpage": "^1.0.3",
35-
"grapesjs-style-bg": "^2.0.2",
36-
"grapesjs-style-filter": "^1.0.2",
37-
"grapesjs-style-gradient": "^3.0.3",
38-
"grapesjs-tui-image-editor": "^1.0.2",
39-
"js-beautify": "^1.15.1",
40-
"lodash": "^4.17.21",
41-
"lorem-ipsum": "^2.0.8",
42-
"lucide-react": "^0.535.0",
43-
"prop-types": "^15.8.1",
44-
"react": "^18.3.1",
45-
"react-accessible-accordion": "^5.0.0",
46-
"react-color": "^2.19.3",
47-
"react-diff-viewer-continued": "^3.4.0",
48-
"react-dom": "^18.3.1",
49-
"react-live": "^4.1.6",
50-
"react-markdown": "^9.0.1",
51-
"react-qr-code": "^2.0.13",
52-
"react-router-dom": "^6.23.1",
53-
"react-syntax-highlighter": "^15.5.0",
54-
"react-toastify": "^10.0.5",
55-
"rehype-raw": "^7.0.0",
56-
"remark-gfm": "^4.0.0",
57-
"store": "^2.0.12",
58-
"tailwind-merge": "^3.3.1",
59-
"typescript": "^5.4.5"
60-
},
61-
"devDependencies": {
62-
"@types/js-beautify": "^1.14.3",
63-
"@types/react-syntax-highlighter": "^15.5.13",
64-
"@types/store": "^2.0.5",
65-
"@vitejs/plugin-react-swc": "^3.7.0",
66-
"autoprefixer": "^10.4.21",
67-
"eslint": "^8.57.0",
68-
"eslint-config-google": "^0.14.0",
69-
"eslint-plugin-import": "^2.29.1",
70-
"eslint-plugin-react": "^7.34.1",
71-
"eslint-plugin-react-hooks": "^4.6.2",
72-
"eslint-plugin-react-refresh": "^0.4.7",
73-
"npm-run-all": "^4.1.5",
74-
"postcss": "^8.4.38",
75-
"tailwindcss": "^4.1.11",
76-
"vite": "^7.0.6"
77-
}
2+
"name": "dev.tools",
3+
"version": "0.0.24",
4+
"description": "A collection of useful developer tools built with React.",
5+
"homepage": "https://devtools-sabeerbikba.vercel.app",
6+
"repository": "https://github.com/sabeerbikba/dev.tools",
7+
"author": "sabeer bikba <sabeerbikba02@gmail.com>",
8+
"type": "module",
9+
"license": "MIT",
10+
"scripts": {
11+
"dev": "vite",
12+
"styles": "npx @tailwindcss/cli -m -i ./src/styles/styles.css -o ./src/styles/output.css --watch",
13+
"cleanup": "rimraf ./dist",
14+
"dev-p": "run-p dev styles",
15+
"build": "vite build",
16+
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
17+
"preview": "vite preview",
18+
"bp": "vite build && vite preview",
19+
"cbp": "rimraf ./dist && vite build && vite preview"
20+
},
21+
"dependencies": {
22+
"@babel/standalone": "^7.24.5",
23+
"@grapesjs/react": "^1.0.0",
24+
"@monaco-editor/react": "^4.6.0",
25+
"@vercel/analytics": "^1.3.0",
26+
"blurhash": "^2.0.5",
27+
"clsx": "^2.1.1",
28+
"crypto-js": "^4.2.0",
29+
"exifr": "^7.1.3",
30+
"github-markdown-css": "^5.5.1",
31+
"grapesjs": "^0.19.5",
32+
"grapesjs-blocks-basic": "^1.0.2",
33+
"grapesjs-custom-code": "^1.0.2",
34+
"grapesjs-plugin-export": "^1.0.12",
35+
"grapesjs-plugin-forms": "^2.0.6",
36+
"grapesjs-preset-newsletter": "^1.0.2",
37+
"grapesjs-preset-webpage": "^1.0.3",
38+
"grapesjs-style-bg": "^2.0.2",
39+
"grapesjs-style-filter": "^1.0.2",
40+
"grapesjs-style-gradient": "^3.0.3",
41+
"grapesjs-tui-image-editor": "^1.0.2",
42+
"js-beautify": "^1.15.1",
43+
"lodash": "^4.17.21",
44+
"lorem-ipsum": "^2.0.8",
45+
"lucide-react": "^0.535.0",
46+
"prop-types": "^15.8.1",
47+
"react": "^18.3.1",
48+
"react-accessible-accordion": "^5.0.0",
49+
"react-color": "^2.19.3",
50+
"react-diff-viewer-continued": "^3.4.0",
51+
"react-dom": "^18.3.1",
52+
"react-live": "^4.1.6",
53+
"react-markdown": "^9.0.1",
54+
"react-qr-code": "^2.0.13",
55+
"react-router-dom": "^6.23.1",
56+
"react-syntax-highlighter": "^15.5.0",
57+
"react-toastify": "^10.0.5",
58+
"rehype-raw": "^7.0.0",
59+
"remark-gfm": "^4.0.0",
60+
"store": "^2.0.12",
61+
"tailwind-merge": "^3.3.1",
62+
"typescript": "^5.4.5"
63+
},
64+
"devDependencies": {
65+
"@types/js-beautify": "^1.14.3",
66+
"@types/react-syntax-highlighter": "^15.5.13",
67+
"@types/store": "^2.0.5",
68+
"@vitejs/plugin-react-swc": "^3.7.0",
69+
"autoprefixer": "^10.4.21",
70+
"eslint": "^8.57.0",
71+
"eslint-config-google": "^0.14.0",
72+
"eslint-plugin-import": "^2.29.1",
73+
"eslint-plugin-react": "^7.34.1",
74+
"eslint-plugin-react-hooks": "^4.6.2",
75+
"eslint-plugin-react-refresh": "^0.4.7",
76+
"npm-run-all": "^4.1.5",
77+
"postcss": "^8.4.38",
78+
"rimraf": "^6.0.1",
79+
"tailwindcss": "^4.1.11",
80+
"vite": "^7.0.6",
81+
"vite-plugin-pwa": "^1.0.2"
82+
}
7883
}

0 commit comments

Comments
 (0)