-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 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
{
"name": "buildflow",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"lint:check": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"format": "prettier --write frontend/",
"format:check": "prettier --check frontend/",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^14.1.0",
"autoprefixer": "^10.4.23",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-vue-next": "^0.562.0",
"marked": "^17.0.1",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"postcss-preset-env": "^11.1.0",
"reka-ui": "^2.7.0",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^3.4.19",
"tailwindcss-animate": "^1.0.7",
"vue": "^3.5.24",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^24.10.8",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^4.0.17",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"eslint": "^9.39.2",
"eslint-plugin-vue": "^10.7.0",
"happy-dom": "^20.3.4",
"prettier": "^3.8.0",
"typescript": "~5.9.3",
"vite": "^7.2.4",
"vite-plugin-static-copy": "^3.1.6",
"vitest": "^4.0.17",
"vue-tsc": "^3.1.4"
}
}