generated from LordRonz/nextjs-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
{
"name": "nextjs-starter",
"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",
"tsc": "tsc --pretty --noEmit --incremental false",
"format": "prettier -w .",
"format:check": "prettier -c .",
"prepare": "husky install"
},
"dependencies": {
"@headlessui/react": "^1.6.4",
"axios": "^0.27.2",
"bcrypt": "^5.0.1",
"clsx": "^1.1.1",
"faunadb": "^4.6.0",
"framer-motion": "^6.3.11",
"http-status": "^1.5.2",
"iron-session": "^6.1.3",
"next": "12.1.6",
"next-themes": "^0.2.0",
"preact": "^10.7.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.2.0",
"react-icons": "^4.4.0",
"react-paginate": "^8.1.3",
"react-table": "^7.8.0",
"react-tippy": "^1.4.0",
"react-toastify": "^9.0.4",
"sweetalert2": "^11.4.17",
"sweetalert2-react-content": "^5.0.0",
"swr": "^1.3.0",
"tailwind-merge": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@types/bcrypt": "^5.0.0",
"@types/node": "18.0.0",
"@types/react": "18.0.13",
"@types/react-table": "^7.7.12",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"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.2",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"tailwindcss": "^3.1.3",
"typescript": "4.7.3"
}
}