-
-
Notifications
You must be signed in to change notification settings - Fork 290
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.65 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.65 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "terminal",
"private": true,
"version": "3.6.0",
"type": "module",
"license": "MIT",
"author": {
"name": "Yassine Fathi",
"url": "https://fathi.me",
"email": "yassine@fathi.me"
},
"funding": {
"type": "Paypal",
"url": "https://paypal.me/yfthi"
},
"repository": {
"type": "git",
"url": "https://github.com/m4tt72/terminal"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:all": "npm run test && npm run test:e2e",
"prepare": "husky"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/svelte": "^5.3.1",
"@testing-library/user-event": "^14.6.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^25.2.3",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.20",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"postcss": "^8.5.13",
"svelte": "^4.2.19",
"svelte-check": "^3.8.5",
"tailwindcss": "^3.4.10",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "^5.4.21",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.17.0"
},
"lint-staged": {
"*.{ts,svelte}": [
"npm run test -- --run"
]
}
}