-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 897 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 897 Bytes
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
{
"name": "humotivatoren-workspace",
"private": true,
"type": "module",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"dev": "concurrently -n frontend,backend -c blue,green \"npm run dev --workspace frontend\" \"npm run dev --workspace backend\"",
"dev:frontend": "npm run dev --workspace frontend",
"dev:backend": "npm run dev --workspace backend",
"build": "npm run build --workspace backend && npm run build --workspace frontend",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@nuxt/test-utils": "^3.17.1",
"@tailwindcss/vite": "^4.1.4",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"concurrently": "^9.1.2",
"happy-dom": "^20.9.0",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}