forked from tulupinc/flowbite-next-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (53 loc) · 1.5 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
{
"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 <conner@tulup.io>",
"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": "^13.0.6",
"react": "18",
"react-dom": "18",
"react-icons": "^4.7.1"
},
"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",
"standard": "^17.0.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}