forked from vivekjilla/nextjs-csr-ssg-isr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "nextjs-csr-ssg-isr",
"version": "0.1.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"export": "next export",
"lint": "next lint",
"release": "standard-version",
"format": "prettier --write .",
"postbuild": "next-sitemap"
},
"dependencies": {
"@tailwindcss/forms": "^0.3.3",
"autoprefixer": "^10.3.3",
"axios": "^0.21.1",
"clsx": "^1.1.1",
"date-fns": "^2.23.0",
"next": "latest",
"postcss": "^8.3.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "18.11.9",
"@types/react": "^17.0.19",
"@types/tailwindcss": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-next": "^11.1.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"next-sitemap": "^1.6.164",
"prettier": "^2.3.0",
"standard-version": "^9.3.1",
"tailwindcss": "^2.2.8",
"typescript": "^4.4.2"
},
"engines": { "node": "=14" },
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md,mdx}": [
"yarn eslint src --max-warnings=0",
"yarn prettier --write"
]
}
}