This repository was archived by the owner on Sep 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "distribunity",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"clean:dist": "rimraf dist",
"build": "npm run lint && npm run build-only && npm run type-check",
"rebuild": "npm run clean:dist && npm run build",
"start": "vite preview",
"test:unit": "vitest",
"build-only": "vite build",
"type-check": "vue-tsc --project ./tsconfig.vitest.json",
"lint": "eslint . --config ./eslint.config.js --ignore-pattern dist/",
"lint-fix": "npm run lint -- --fix"
},
"dependencies": {
"@vueuse/core": "^11.1.0",
"firebase": "^10.14.1",
"lightningcss": "1.27.0",
"pinia": "2.2.4",
"vue": "3.5.12",
"vue-i18n": "10.0.4",
"vue-interact": "2.0.0",
"vue-router": "4.4.5",
"vuefire": "3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@rushstack/eslint-patch": "1.10.4",
"@stylistic/eslint-plugin": "^2.9.0",
"@tailwindcss/typography": "^0.5.15",
"@tsconfig/node22": "22.0.0",
"@types/eslint": "9.6.1",
"@types/eslint__js": "^8.42.3",
"@types/jsdom": "21.1.7",
"@types/node": "22.7.5",
"@vitejs/plugin-vue": "5.1.4",
"@vue/eslint-config-typescript": "14.1.1",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.12.0",
"eslint-define-config": "2.1.0",
"eslint-plugin-vue": "^9.27.0",
"globals": "^15.11.0",
"postcss": "^8.4.42",
"rimraf": "^6.0.1",
"rollup-plugin-visualizer": "5.12.0",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.3.0",
"vite": "5.4.9",
"vitest": "2.1.3",
"vue-tsc": "^2.1.6"
}
}