forked from amargiovanni/tools-collection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 934 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 934 Bytes
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
{
"name": "tools-collection",
"type": "module",
"version": "1.5.1",
"private": true,
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"dependencies": {
"@astrojs/solid-js": "^6.0.0",
"@tailwindcss/vite": "^4.2.1",
"astro": "^6.1.8",
"class-variance-authority": "^0.7.1",
"fuse.js": "^7.3.0",
"solid-js": "^1.9.12"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"jsdom": "^29.0.2",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}