-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.54 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "fontlay",
"description": "A simple Google Fonts proxy and privacy-friendly. Prevent your users from being tracked and push your privacy.",
"version": "2.2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "npx prettier --config .prettierrc --write \"src/**/*.tsx\"",
"prettier:check": "npx prettier --check \"src/**/*.tsx\"",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"pm2:start": "pm2 start ecosystem.config.js",
"pm2:dev": "pm2 start ecosystem.config.js --env development",
"pm2:delete": "pm2 delete ecosystem.config.js",
"pm2:restart": "pm2 restart ecosystem.config.js"
},
"author": "Farid Nizam",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"autoprefixer": "10.4.14",
"clsx": "^1.2.1",
"cssnano": "^6.0.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.5",
"next": "14.2.5",
"next-seo": "^6.5.0",
"next-sitemap": "^4.2.3",
"postcss": "8.4.24",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^4.12.0",
"swr": "^2.2.0",
"tailwindcss": "3.3.2"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/prettier": "^2.7.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"daisyui": "^3.0.1",
"next-themes": "^0.2.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"typescript": "^5.5.3"
}
}