-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "flowbite-next-starter",
"version": "0.0.0",
"homepage": "https://github.com/tulupinc/flowbite-next-starter",
"bugs": "https://github.com/tulupinc/flowbite-next-starter/issues",
"license": "MIT",
"author": "Conner Davis <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/tulupinc/flowbite-next-starter.git"
},
"scripts": {
"build": "next build",
"dev": "next dev",
"format": "prettier --check --ignore-path .gitignore --write .",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"flowbite": "^1.5.5",
"flowbite-react": "^0.3.7",
"next": "^14.0.0",
"npm": "^10.8.3",
"react": "18",
"react-dom": "18",
"react-icons": "^4.7.1",
"yarn": "^1.22.22"
},
"devDependencies": {
"@types/node": "^18.11.12",
"@types/react": "18",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"autoprefixer": "10.4.13",
"eslint": "^8.29.0",
"eslint-config-next": "^13.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.7.1",
"postcss": "^8.4.19",
"prettier": "^2.8.1",
"prettier-plugin-organize-imports": "^3.2.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"next/core-web-vitals",
"plugin:@typescript-eslint/strict",
"plugin:jsx-a11y/recommended",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:tailwindcss/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"root": true,
"rules": {
"no-undef": "off",
"react/react-in-jsx-scope": "off",
"tailwindcss/classnames-order": [
"warn",
{
"officialSorting": true
}
]
}
}
}