-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.14 KB
/
package.json
File metadata and controls
46 lines (46 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
43
44
45
46
{
"name": "service_project",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\""
},
"dependencies": {
"@headlessui/react": "^2.2.9",
"axios": "^1.13.5",
"dayjs": "^1.11.19",
"next": "^15.0.0",
"openai": "^6.22.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-sanitize": "^6.0.0",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"uuid": "^13.0.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"eslint": "^8",
"eslint-config-next": "^15.0.0",
"eslint-config-prettier": "^10.1.8",
"pdfkit": "^0.17.2",
"postcss": "^8",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}