-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "search-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"start:typesense": "docker compose up",
"index:typesense": "npx tsx ./scripts/indexTypesense.ts",
"cypress:open": "cypress open",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@tombatossals/react-chords": "^0.2.10",
"next": "14.0.4",
"react": "^18",
"react-dom": "^18",
"react-instantsearch": "^7.5.2",
"typesense": "^1.7.2",
"typesense-instantsearch-adapter": "^2.7.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.6.2",
"dotenv": "^16.3.2",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"happy-dom": "^12.10.3",
"sass": "^1.69.5",
"typescript": "^5",
"vite-tsconfig-paths": "^4.2.2",
"vitest": "^1.1.0"
}
}