generated from lekipising/next-tailwind-typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"prepare": "husky install",
"lint-staged": "lint-staged --config lint-staged.js"
},
"dependencies": {
"axios": "^1.2.1",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@next/eslint-plugin-next": "^13.0.0",
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss-preset-env": "^7.8.2",
"prettier": "^2.7.1",
"tailwindcss": "^3.2.1",
"typescript": "^4.8.3"
}
}