forked from mosh-hamedani/javascript-testing-starter
-
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) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 890 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": "javascript-testing",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"format": "prettier . --write",
"lint": "eslint . --fix",
"check-types": "tsc"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-istanbul": "3.2.4",
"eslint": "^9.33.0",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"prettier": "3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.1",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"dependencies": {
"@vitest/coverage-v8": "^3.2.4",
"delay": "^6.0.0"
}
}