-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 993 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 993 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
30
31
32
33
34
35
36
{
"name": "dapr-store-frontend",
"version": "0.8.6",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest run",
"test:unit:report": "vitest run --reporter=junit > ../../test-reports/frontend.xml",
"test:unit:update": "vitest run -u",
"test:unit:watch": "vitest watch",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix && prettier --check src",
"lint-fix": "prettier --write src/"
},
"dependencies": {
"@azure/msal-browser": "^4.12.0",
"bootstrap": "^5.3.6",
"bootswatch": "^5.3.6",
"vue": "^3.5.13",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.26.0",
"eslint-plugin-vue": "^10.1.0",
"globals": "^16.1.0",
"jsdom": "^26.1.0",
"prettier": "^3.5.3",
"vite": "^6.3.6",
"vitest": "^3.1.3"
}
}