forked from mcstatus-io/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"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/",
"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.16",
"cssnano": "^6.0.1",
"formik": "^2.4.5",
"highlight.js": "^11.8.0",
"next": "^13.5.2",
"postcss": "^8.4.30",
"raw-loader": "^4.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.68.0",
"semver": "^7.5.4",
"sharp": "^0.32.6",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^13.5.2",
"@next/eslint-plugin-next": "^13.5.2",
"@types/prop-types": "^15.7.6",
"@types/semver": "^7.5.2",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-next": "^13.5.2",
"eslint-plugin-react": "^7.33.2"
}
}