-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
53
54
55
56
57
58
{
"name": "website",
"version": "1.0.0",
"private": true,
"license": "BSD-3-Clause-Clear",
"description": "New NextJS+Preact rewrite of the website",
"homepage": "https://oxygenupdater.com",
"bugs": "https://github.com/oxygen-updater/website/issues",
"repository": {
"type": "git",
"url": "https://github.com/oxygen-updater/website.git"
},
"author": {
"name": "Adhiraj Singh Chauhan",
"email": "adhirajsinghchauhan@gmail.com"
},
"scripts": {
"dev": "env-cmd -e dev next dev -p 80",
"build:dev": "env-cmd -e dev --use-shell \"next build && next export -o out/dev\"",
"build:test": "env-cmd -e test --use-shell \"next build && next export -o out/test\"",
"build:prod": "env-cmd -e prod --use-shell \"next build && next export -o out/prod\"",
"start": "next start",
"lint": "next lint"
},
"//": "Ensure firebase version is synced with public/fcm-sw.js",
"dependencies": {
"firebase": "^11.3.1",
"gsap": "^3.12.7",
"next": "^12.3.4",
"preact": "^10.25.4",
"react": "npm:@preact/compat@^18.3.1",
"react-dom": "npm:@preact/compat@^18.3.1",
"react-timeago": "^7.2.0"
},
"devDependencies": {
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@tailwindcss/line-clamp": "^0.4.4",
"@types/react": "^17.0.83",
"@types/react-timeago": "^4.1.7",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"dompurify": "^3.2.4",
"env-cmd": "^10.1.0",
"eslint": "^8.57.1",
"eslint-config-next": "^12.3.4",
"isomorphic-dompurify": "^2.22.0",
"next-plugin-preact": "^3.0.7",
"postcss": "^8.5.3",
"preact-render-to-string": "^6.5.13",
"sass": "^1.85.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
}
}