-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
61
62
63
64
65
66
{
"name": "website",
"version": "1.0.0",
"description": "The NextJS server that powers the mcstatus.io public website.",
"private": true,
"browserslist": [
"defaults"
],
"scripts": {
"start": "next start src/",
"build": "next build src/",
"dev": "next dev src/",
"lint": "eslint .",
"analyze": "cross-env ANALYZE=true next build src/",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build src/",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcstatus-io/Website.git"
},
"keywords": [
"minecraft",
"status",
"api",
"server"
],
"author": "Jacob Gunther",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/mcstatus-io/Website/issues"
},
"homepage": "https://github.com/mcstatus-io/Website#readme",
"dependencies": {
"@svgr/webpack": "^8.1.0",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"formik": "^2.4.6",
"highlight.js": "^11.11.1",
"linkify-html": "^4.2.0",
"linkifyjs": "^4.2.0",
"next": "^15.1.3",
"postcss": "^8.4.49",
"raw-loader": "^4.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.0",
"semver": "^7.6.3",
"sharp": "^0.33.5",
"swetrix": "^3.5.3",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.3",
"@next/eslint-plugin-next": "^15.1.3",
"@types/prop-types": "^15.7.14",
"@types/semver": "^7.5.8",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.3",
"eslint-plugin-react": "^7.37.3"
},
"overrides": {
"globals": "14.0.0"
}
}