-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.14 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.14 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
{
"name": "faq-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "rm -rf .next && next build",
"start": "next start -p 3005",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:production": "eslint --config eslint.config.production.mjs",
"type-check": "tsc --noEmit",
"analyze": "ANALYZE=true next build",
"export": "next export"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^41.4.2",
"@ckeditor/ckeditor5-core": "^41.4.2",
"@ckeditor/ckeditor5-image": "^46.1.1",
"@ckeditor/ckeditor5-react": "^11.0.0",
"@ckeditor/ckeditor5-upload": "^46.1.1",
"clsx": "^2.1.1",
"lucide-react": "^0.468.0",
"next": "15.5.2",
"react": "19.1.0",
"react-dom": "19.1.0",
"sweetalert2": "^11.23.0",
"typescript": "^5",
"xss": "^1.0.15"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
}
}