-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.46 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
{
"name": "konf-web-2024",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint \"./src/**/*.ts?(x)\" --fix",
"lint:check": "eslint \"./src/**/*.ts?(x)\"",
"prettier": "prettier --write \"src/**/*.(ts|tsx)\"",
"prettier:check": "prettier --check \"src/**/*.(ts|tsx)\""
},
"author": {
"name": "Simonyi Károly Szakkollégium",
"email": "[email protected]",
"url": "https://simonyi.bme.hu"
},
"dependencies": {
"@headlessui/react": "^1.7.17",
"clsx": "^2.0.0",
"date-fns": "^3.3.1",
"email-validator": "^2.0.4",
"googleapis": "^129.0.0",
"next": "14.1.1",
"next-plausible": "^3.12.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0",
"react-markdown": "^9.0.1",
"react-snap-carousel": "^0.4.0",
"remark-gfm": "^4.0.0",
"yet-another-react-lightbox": "^3.16.0",
"react-google-recaptcha-v3": "^1.10.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"postcss": "^8",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.0",
"typescript": "~5.2.2"
}
}