-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.01 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
63
64
65
66
{
"name": "openai-next-lab",
"author": "@Kadxy",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "cross-env BUILD_MODE=standalone next build",
"start": "next start -p 3019",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write .",
"check-format": "prettier --check .",
"export": "cross-env BUILD_MODE=export BUILD_APP=1 next build",
"export:dev": "cross-env BUILD_MODE=export BUILD_APP=1 next dev",
"app:dev": "yarn tauri dev",
"app:build": "yarn tauri build"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ant-design/nextjs-registry": "^1.0.0",
"@ant-design/pro-components": "^2.7.19",
"@aws-sdk/client-s3": "^3.658.1",
"@aws-sdk/s3-request-presigner": "^3.658.1",
"@fortaine/fetch-event-source": "^3.0.6",
"@types/file-saver": "^2.0.7",
"ai-model-hub": "^1.2.1",
"ajv": "8.17.1",
"ali-oss": "^6.20.0",
"antd": "^5.21.1",
"js-tiktoken": "^1.0.12",
"json-stringify-pretty-compact": "^4.0.0",
"lodash": "^4.17.21",
"next": "^14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-layout-kit": "^1.9.0",
"react-router-dom": "^6.23.1",
"react-syntax-highlighter": "^15.5.0",
"sass": "^1.79.3",
"tiktoken": "^1.0.15",
"zustand": "^4.5.2"
},
"devDependencies": {
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": "1.6.2",
"@types/ali-oss": "^6.16.11",
"@types/lodash": "^4.17.9",
"@types/node": "^22.7.2",
"@types/react": "^18.3.9",
"@types/react-dom": "^18.2.7",
"@types/react-katex": "^3.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/spark-md5": "^3.0.4",
"cross-env": "^7.0.3",
"eslint": "8.0.0",
"eslint-config-next": "14.2.13",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "5.6.2",
"webpack": "^5.95.0"
},
"resolutions": {
"lint-staged/yaml": "^2.2.2"
}
}