-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1020 Bytes
/
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
{
"name": "exsesx.dev",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint",
"generate:sitemap": "next-sitemap",
"postinstall": "husky install"
},
"dependencies": {
"@tailwindcss/typography": "0.5.8",
"autoprefixer": "10.4.13",
"classnames": "2.3.2",
"critters": "0.0.16",
"next": "13.0.3",
"next-sitemap": "3.1.30",
"postcss": "8.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-spring": "9.5.5",
"sharp": "0.31.2",
"swr": "1.3.0",
"tailwindcss": "3.2.4",
"use-dark-mode": "2.3.1"
},
"devDependencies": {
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"eslint": "8.27.0",
"eslint-config-next": "13.0.3",
"husky": "^8.0.2",
"prettier": "2.7.1",
"prettier-plugin-organize-imports": "3.2.0",
"typescript": "4.8.4"
}
}