-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
109 lines (109 loc) · 3 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@skyra-project/dashboard",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"scripts": {
"dev": "next dev src",
"typecheck": "tsc -b src",
"prebuild": "yarn build:sitemap",
"build": "next build src",
"start": "next start src",
"export": "next export src",
"lint": "next lint src --fix",
"clean": "node scripts/clean.mjs",
"build:sitemap": "node scripts/sitemapGenerator.mjs",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\""
},
"dependencies": {
"@emotion/cache": "^11.10.5",
"@emotion/react": "^11.10.5",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.8",
"@sapphire/utilities": "^3.11.0",
"clsx": "^1.2.1",
"constate": "^3.3.2",
"deepmerge": "^4.3.0",
"mui-sx": "^1.0.0",
"next": "^13.5.6",
"next-pwa": "^5.6.0",
"next-seo": "^5.15.0",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@next/eslint-plugin-next": "^13.1.6",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/plugin-api": "^4.0.1",
"@sapphire/prettier-config": "^1.4.5",
"@sapphire/ts-config": "^3.3.4",
"@skyra/discord-components-react": "^3.6.0",
"@types/body-scroll-lock": "^3.1.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/react": "^18.0.27",
"@types/react-color": "^3.0.6",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"body-scroll-lock": "^4.0.0-beta.0",
"cz-conventional-changelog": "^3.3.0",
"discord-api-types": "^0.37.92",
"eslint": "^8.33.0",
"eslint-config-next": "^13.1.6",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"formik": "^2.2.9",
"lint-staged": "^13.1.1",
"lodash": "^4.17.21",
"mdi-react": "^9.1.0",
"nextjs-sitemap-generator": "^1.3.1",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"react-color": "^2.19.3",
"react-emoji-render": "^2.0.1",
"react-markdown": "^8.0.5",
"react-virtuoso": "^4.1.0",
"rehype-raw": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"remark-gfm": "^3.0.1",
"typescript": "^4.9.5",
"utility-types": "^3.10.0",
"webpack": "^5.94.0",
"yup": "^0.32.11"
},
"resolutions": {
"minimist": "^1.2.6"
},
"lint-staged": {
"*.{mjs,js,jsx,ts,tsx}": "eslint --fix --ext mjs,js,jsx,ts,tsx"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/skyra.pw.git"
},
"bugs": {
"url": "https://github.com/skyra-project/skyra.pw/issues"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}