-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.57 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "blog",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"format": "prettier --write . '**/*.{json,md,js,ts,tsx}'",
"format:write": "prettier --write . '**/*.{json,md,js,ts,tsx}'",
"format:check": "prettier --check . '**/*.{json,md,js,ts,tsx}'",
"lint": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
"lint:fix": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx . --fix",
"test": "jest",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@headlessui/react": "^1.6.5",
"@tailwindcss/typography": "^0.5.2",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@xboxreplay/xboxlive-api": "^3.4.3",
"@xboxreplay/xboxlive-auth": "^4.0.0",
"classcat": "^5.0.3",
"dayjs": "^1.11.1",
"esbuild": "^0.14.38",
"jest": "^28.0.2",
"mdx-bundler": "^9.0.0",
"next": "^13.1.1",
"next-themes": "^0.2.0",
"p-limit": "^4.0.0",
"polished": "^4.2.2",
"psn-api": "^2.8.1",
"react": "^18.2.0",
"react-cool-inview": "^3.0.1",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-use": "^17.4.0",
"recharts": "^2.1.11",
"rehype-prism-plus": "^1.3.2",
"retroachievements-js": "^1.1.0",
"scheduler": "^0.23.0",
"tailwindcss": "^3.0.24",
"urlcat": "^2.0.4",
"use-context-selector": "^1.4.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^12.1.6",
"@next/eslint-plugin-next": "^12.1.6",
"@types/faker": "^5.5.9",
"@types/node": "^17.0.29",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"autoprefixer": "^10.4.7",
"contentlayer": "^0.2.4",
"cross-env": "^7.0.3",
"cssnano": "^5.1.7",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"faker": "5.5.3",
"next-contentlayer": "^0.2.4",
"next-plausible": "^3.1.9",
"postcss": "^8.4.12",
"postcss-nested": "^5.0.6",
"prettier": "2.6.2",
"rehype-slug": "^5.0.1",
"typescript": "^4.6.3"
},
"prettier": {
"trailingComma": "none"
}
}