-
Notifications
You must be signed in to change notification settings - Fork 417
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1004 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1004 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
37
38
{
"name": "tests",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"start": "vite serve",
"unit": "vitest",
"unit:ui": "vitest --ui",
"unit:ci": "vitest run",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"test:all": "npm run unit:ci && npm run e2e"
},
"dependencies": {
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.4",
"@solidjs/start": "workspace:*",
"@solidjs/testing-library": "^0.8.10",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@vitest/ui": "^4.1.0",
"jsdom": "^28.1.0",
"lodash": "^4.17.23",
"solid-js": "^1.9.11",
"vite": "^7.3.1",
"vite-plugin-solid": "^2.11.11",
"vitest": "^4.1.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/lodash": "^4.17.24",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"playwright": "^1.58.2"
}
}