-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "kesency",
"version": "1.3.0",
"description": "Official KESENCY Website (front-end part)",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier . --check",
"lint": "eslint .",
"lint:staged": "lint-staged",
"prepare": "husky"
},
"author": "Enes Tahiri <125091714+e-enes@users.noreply.github.com>",
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"browserslist": [
"> 0.5%",
"not dead",
"not ie <= 11",
"not Safari > 0"
],
"homepage": "https://github.com/e-enes/kesency#readme",
"bugs": {
"email": "125091714+e-enes@users.noreply.github.com",
"url": "https://github.com/e-enes/kesency/issues"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"bootstrap": "^5.3.3",
"next": "^14.1.4",
"react-bootstrap": "^2.10.2",
"react-google-recaptcha": "^3.1.0",
"react-slick": "^0.30.2",
"slick-carousel": "^1.8.1"
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.1.4",
"@types/node": "18.19.30",
"@types/react-google-recaptcha": "^2.1.9",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"typescript": "5.4.4"
}
}