-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"devDependencies": {
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"eslint-plugin-react": "^7.34.1",
"npm-check-updates": "^16.14.20",
"prettier": "^3.2.5",
"puppeteer": "^22.7.1",
"pwa-asset-generator": "^6.3.1",
"tailwindcss": "^3.4.3",
"tsx": "^4.8.2",
"typescript": "^5.4.5",
"update-browserslist-db": "^1.0.14",
"vite": "^5.2.10"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@nextui-org/react": "^2.3.6",
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"vite-plugin-pwa": "^0.20.0"
},
"type": "module",
"scripts": {
"build": "npx update-browserslist-db && npm urn tw && npm urn gen-screenshots && vite build && npm urn gen-icons",
"dev": "npx vite",
"fmt": "prettier -w .",
"gen-icons": "tsx scripts/generateIcons.ts",
"gen-screenshots": "tsx scripts/generateScreenshots.ts",
"preview": "vite preview",
"tw": "tailwind -mi src/_styles/input.css -o src/_styles/main.out.css",
"tww": "npm urn tw -- -w",
"up": "ncu -u && npm i"
}
}