-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.05 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.05 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
67
68
69
70
{
"name": "mastermind-vue",
"description": "Mastermind game built with Vue",
"homepage": "https://bjoern.familie-bark.de",
"repository": {
"type": "git",
"url": "https://github.com/beberhardt/mastermind.git"
},
"author": "Bjoern Bark",
"version": "0.0.25",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.vue",
"format": "prettier --write .",
"lint:fix": "eslint . --ext .ts,.vue --fix",
"check": "npm run lint:fix && npm run format",
"prepare": "husky install",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:ci": "playwright test"
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/vite": "^4.1.11",
"@vueuse/core": "^13.5.0",
"eslint-plugin-prettier": "^5.5.1",
"pinia": "^3.0.3",
"vue": "^3.4.0",
"vue-eslint-parser": "^10.1.4",
"vue-i18n": "^11.1.7"
},
"devDependencies": {
"@eslint/js": "^9.30.0",
"@iconify-json/mdi": "^1.2.3",
"@playwright/test": "^1.55.1",
"@types/node": "^24.0.11",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.1",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-unused-imports": "^4.1.4",
"eslint-plugin-vue": "^10.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"prettier-eslint": "^16.4.2",
"prettier-plugin-tailwindcss": "^0.6.13",
"sass-embedded": "^1.89.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0",
"unplugin-icons": "^22.1.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^5.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-remove-console": "^2.2.0"
}
}