-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
59
60
{
"name": "codequake",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --experimental-https ",
"inspect": "cross-env NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true next build",
"start": "next start",
"lint": "next lint",
"turbo": "next --turbo",
"dev-https": "bun --bun run server.ts",
"start-https": "NODE_ENV=production bun --bun run server.ts"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@next/bundle-analyzer": "^14.2.5",
"@nextui-org/react": "^2.4.6",
"@radix-ui/react-hover-card": "^1.1.1",
"@types/jsdom": "^21.1.7",
"@types/react-fontawesome": "^1.6.8",
"@types/xml2js": "^0.4.14",
"axios": "^1.7.3",
"cheerio": "^1.0.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.24",
"got": "^14.4.2",
"html-react-parser": "^5.1.12",
"jsdom": "^24.1.1",
"mkcert": "^3.2.0",
"newsapi": "^2.4.1",
"next": "^14.2.5",
"qss": "^3.0.0",
"react": "^18.3.1",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.4",
"simplex-noise": "^4.0.3",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.1",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/bun": "^1.1.6",
"@types/node": "^20.14.15",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.9",
"typescript": "^5.5.4"
}
}