-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.26 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.26 KB
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
{
"name": "frontend-bluesncoppers",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"prepare": "husky install",
"compile": "tsc"
},
"dependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@headlessui/react": "^1.7.13",
"@types/node": "18.11.10",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"classnames": "^2.3.2",
"eslint": "8.28.0",
"eslint-config-next": "^13.0.6",
"flowbite": "^1.6.3",
"flowbite-react": "^0.3.8",
"framer-motion": "^9.0.1",
"next": "13.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^5.0.1",
"react-slick": "^0.29.0",
"slick-carousel": "^1.8.1",
"typescript": "4.9.3"
},
"devDependencies": {
"@types/react-slick": "^0.23.10",
"autoprefixer": "^10.4.13",
"husky": "^8.0.2",
"postcss": "^8.4.19",
"prettier": "^2.8.0",
"prettier-plugin-tailwindcss": "^0.2.0",
"tailwindcss": "^3.2.4"
}
}