-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.17 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.17 KB
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": "showcase-guitar-chords-search-nextjs",
"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": "^15.1.9",
"react": "^18",
"react-dom": "^18",
"react-instantsearch": "^7.14.0",
"typesense": "^1.8.2",
"typesense-instantsearch-adapter": "^2.8.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@vitejs/plugin-react": "^4.3.4",
"cypress": "^13.17.0",
"dotenv": "^16.4.7",
"eslint": "^9",
"eslint-config-next": "15.1.4",
"happy-dom": "^20.0.11",
"sass": "^1.83.4",
"typescript": "^5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^4.0.15"
}
}