-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
40 lines (40 loc) · 1.1 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
{
"name": "chatgpt-minimal",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint ./src --fix",
"lint:strict": "eslint --max-warnings=0 ./src",
"format": "prettier --write 'src/**/*.{ts,tsx,js,json,html,css,less,md}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx,js,json,html,css,less,md}'"
},
"dependencies": {
"@ant-design/icons": "4.7.0",
"antd": "4.23.6",
"clipboard": "2.0.11",
"eventsource-parser": "1.0.0",
"lodash-es": "4.17.21",
"markdown-it": "13.0.1",
"markdown-it-highlightjs": "4.0.1",
"markdown-it-katex": "2.0.3",
"next": "13.5.6",
"next-with-less": "3.0.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@types/lodash-es": "4.17.8",
"@types/markdown-it": "12.2.3",
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"prettier": "3.2.5",
"typescript": "5.2.2"
}
}