-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "nextjs-starterpack",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"export": "next export",
"start": "next start",
"deduplicate": "npx yarn-deduplicate && yarn install",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"lint:strict": "eslint --max-warnings=0 src",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"dependencies": {
"clsx": "^1.1.1",
"next": "12.1.6",
"next-themes": "^0.2.0",
"preact": "^10.7.3",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-icons": "^4.4.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"autoprefixer": "^10.4.7",
"eslint": "^8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.1.2"
}
}