-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 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
{
"name": "bid-rally",
"version": "1.0.0",
"description": "A bidding application built with Vite and Tailwind CSS",
"homepage": "https://github.com/Torehirth/Bid-Rally#readme",
"bugs": {
"url": "https://github.com/Torehirth/Bid-Rally/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Torehirth/Bid-Rally.git"
},
"license": "ISC",
"author": "Tore Hirth <torehirth@gmail.com>",
"type": "module",
"main": "main.mjs",
"scripts": {
"start": "live-server --port=5173",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky",
"unit": "vitest",
"unit:ui": "vitest --ui",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"e2e:headed": "playwright test --headed",
"e2e:debug": "playwright test --debug"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@playwright/test": "^1.55.0",
"@types/node": "^24.3.1",
"@vitest/ui": "^3.2.4",
"dotenv": "^17.2.2",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-playwright": "^2.2.2",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.5",
"live-server": "^1.2.2",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"vite": "^7.0.6",
"vitest": "^3.2.4"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"tailwindcss": "^4.1.11"
},
"lint-staged": {
"*.{js,mjs,html,css}": [
"prettier --write"
],
"*.{js,mjs}": [
"eslint --fix"
]
}
}