-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
59 lines (59 loc) · 1.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
{
"name": "og",
"version": "0.2.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"format": "prettier --write src",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.4",
"@vercel/og": "^0.0.27",
"autoprefixer": "^10.4.0",
"clsx": "^1.1.1",
"next": "^13.1.2",
"postcss": "^8.4.5",
"query-string": "^7.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.22.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/tailwindcss": "^2.2.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-next": "^13.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"next-sitemap": "^1.6.203",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"tailwindcss": "^2.2.19",
"typescript": "^4.9.4"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,}": [
"eslint --max-warnings=0",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
}
}