-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.27 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
{
"name": "website",
"version": "2.0.0",
"private": false,
"license": "BSD-3-Clause",
"author": {
"name": "Octalogic Tech",
"email": "[email protected]",
"url": "https://octalogic.in/"
},
"maintainers": [
{
"name": "Jude Fernandes",
"email": "[email protected]"
},
{
"name": "Glenn Fernandes",
"email": "[email protected]"
},
{
"name": "Dylan Thompson",
"email": "[email protected]"
}
],
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "npx next-sitemap",
"start": "next start",
"lint": "next lint",
"prettier:format": "CI=true prettier --write \"**/*.{tsx,ts,jsx,js,css,json,css,scss,md}\"",
"prettier:check": "CI=true npx prettier \"**/*.{tsx,ts,jsx,js,css,json,css,scss,md}\" --check",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.11.16",
"@mui/lab": "^5.0.0-alpha.134",
"@mui/material": "^5.13.5",
"@tanstack/react-query": "^4.29.14",
"@vercel/analytics": "^1.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"clsx": "^1.2.1",
"next": "13.4.6",
"next-api-decorators": "^2.0.2",
"next-seo": "^6.0.0",
"notistack": "^3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@emotion/babel-plugin": "11.11.0",
"@tanstack/react-query-devtools": "^4.29.14",
"@types/node": "20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "18.2.5",
"@types/react-router-dom": "5.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"next-sitemap": "^4.1.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.1",
"typescript": "5.1.3",
"vercel": "^30.2.2"
}
}