-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 2.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-answers",
"version": "0.1.0",
"type": "module",
"private": true,
"proxy": "https://api.anthropic.com",
"dependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@cdssnc/gcds-components": "^0.26.1",
"@cdssnc/gcds-components-react": "^0.26.3",
"@cdssnc/gcds-utility": "^1.4.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"@langchain/anthropic": "^0.3.9",
"@langchain/cohere": "^0.3.1",
"@langchain/langgraph": "^0.2.33",
"@langchain/openai": "^0.3.14",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.7.9",
"cheerio": "^1.0.0",
"cohere-ai": "^2.3.0",
"cors": "^2.8.5",
"datatables.net": "^2.2.1",
"datatables.net-dt": "^2.2.1",
"datatables.net-react": "^1.0.0",
"dotenv": "^16.4.5",
"duck-duck-scrape": "^2.2.6",
"express": "^4.21.1",
"googleapis": "^144.0.0",
"install": "^0.13.0",
"langchain": "^0.3.7",
"lucide-react": "^0.454.0",
"mongodb": "^6.9.0",
"mongoose": "^8.8.3",
"npm": "^10.9.0",
"openai": "^4.73.1",
"playwright": "^1.49.1",
"playwright-extra": "^4.3.6",
"playwright-extra-plugin-stealth": "^0.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"react-scripts": "^5.0.1",
"web-vitals": "^2.1.4",
"xlsx": "^0.18.5"
},
"jest": {
"transformIgnorePatterns": [
"node_modules/(?!(@cdssnc/gcds-components-react)/)"
],
"transform": {
"^.+\\.jsx?$": "babel-jest",
"^.+\\.tsx?$": "babel-jest"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"start-server": "node server/server.js",
"dev": "concurrently \"npm run start-server\" \"npm start\"",
"lint": "dotenv -e .env eslint src/**/*.{js,jsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.25.4",
"babel-jest": "^29.7.0",
"concurrently": "^9.0.1",
"dotenv-cli": "^7.4.4",
"eslint": "^8.57.1",
"eslint-plugin-react": "^7.37.2"
}
}