-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.21 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
71
72
73
74
75
{
"name": "fourtiles",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=26.7.0"
},
"scripts": {
"build": "run-p type-check \"build-only {@}\" --",
"build-only": "vite build",
"dev": "vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"src/**/*.{css,vue}\" \"public/*.css\"",
"lint:oxlint": "oxlint -c oxlintrc.json src public",
"lint:knip": "knip",
"lint": "pnpm run lint:eslint && pnpm run lint:stylelint && pnpm run lint:oxlint && pnpm run lint:knip",
"preview": "vite preview",
"test:e2e": "playwright test",
"test:e2e:dev": "playwright test --ui",
"test:unit": "vitest",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@sentry/vue": "^10.70.0",
"@tabler/icons-vue": "^3.46.0",
"@vueuse/core": "^14.4.0",
"canvas-confetti": "^1.9.4",
"lodash-es": "^4.18.1",
"mitt": "^3.0.1",
"normalize.css": "^8.0.1",
"pinia": "^4.0.3",
"vue": "^3.5.41"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@pinia/testing": "^2.0.1",
"@playwright/test": "^1.62.1",
"@testing-library/vue": "^8.1.0",
"@types/canvas-confetti": "^1.9.0",
"@types/jsdom": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^26.2.0",
"@types/setimmediate": "^1.0.4",
"@vitejs/plugin-vue": "^6.0.8",
"@vue/compiler-dom": "^3.5.41",
"@vue/server-renderer": "^3.5.41",
"@vue/test-utils": "^2.4.11",
"eslint": "^10.8.1",
"eslint-plugin-vue": "^10.10.0",
"jiti": "^2.7.0",
"jsdom": "^30.0.1",
"knip": "^6.32.2",
"npm-run-all2": "^9.0.3",
"oxlint": "^1.79.0",
"postcss": "^8.5.26",
"postcss-html": "^2.0.0",
"prettier": "^3.9.6",
"setimmediate": "^1.0.5",
"stylelint": "^17.14.1",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.1",
"vite-plugin-csp-guard": "^4.0.1",
"vite-plugin-pwa": "^1.3.0",
"vite-plugin-vue-devtools": "^8.2.1",
"vitest": "^4.1.11",
"vue-eslint-parser": "^10.4.1",
"vue-tsc": "^3.3.10"
},
"packageManager": "pnpm@11.22.0"
}