-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.62 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
{
"name": "discovery-ai",
"description": "Chat-based discovery tool leveraging AI function calling to explore diverse content via search APIs. Supports Gemini AI & OpenAI.",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3333",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"generate-data": "{ head -n 1 ./raw-data/shein/shein-all.csv; tail -n +2 ./raw-data/shein/shein-all.csv | shuf -n 50000; } > ./raw-data/shein/shein-50000.csv",
"normalize-data": "ts-node ./scripts/standardize-shein-data.ts",
"type-check": "tsc"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.1",
"@mui/material": "^5.15.1",
"axios": "^1.6.2",
"bestbuy": "^2.4.1",
"fs-extra": "^11.2.0",
"minisearch": "^6.3.0",
"next": "14.0.4",
"node-html-parser": "^6.1.13",
"openai": "^4.83.0",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1",
"zod": "^3.24.1",
"zustand": "^4.5.4"
},
"devDependencies": {
"@next/env": "^14.0.4",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"colors": "^1.4.0",
"csv-parse": "^5.5.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}