-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.38 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.38 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
{
"name": "front-end",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"engines": {
"node": ">=24"
},
"scripts": {
"start": "npm run start --workspace=apps",
"test": "npm run --workspaces --if-present test",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "npm run --workspaces --if-present lint:eslint",
"lint:prettier": "npm run --workspaces --if-present lint:prettier",
"lint:tsc": "npm run --workspaces --if-present lint:tsc",
"format": "npm run --workspaces --if-present format",
"build": "npm run --workspaces --if-present build"
},
"devDependencies": {
"@storybook/addon-docs": "^9.1.20",
"@storybook/addon-onboarding": "^9.1.20",
"@storybook/vue3-vite": "^9.1.20",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.12.2",
"@types/luxon": "^3.7.1",
"@types/qs": "^6.15.0",
"typescript-eslint": "^8.59.0",
"eslint": "^v9.39.4",
"eslint-config-prettier": "^10.1.8",
"@vue/tsconfig": "^0.9.1",
"eslint-config-love": "^153.0.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-storybook": "^9.1.20",
"eslint-plugin-vue": "^10.9.0",
"jsdom": "^28.1.0",
"keycloak-js": "^26.2.3",
"prettier": "^3.8.3",
"storybook": "^9.1.19",
"typescript": "^6.0.3",
"vite": "^7.3.2",
"vitest": "^4.0.18",
"vue-eslint-parser": "^10.4.0",
"vue-tsc": "^3.2.7"
}
}