-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.83 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.83 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
59
60
61
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"gen": "openapi-typescript https://raw.githubusercontent.com/data-preservation-programs/singularity/main/docs/swagger/swagger.yaml --output ./utils/SingularityAPI.ts",
"test": "vitest",
"test:watch": "vitest --watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test && npm run test:e2e"
},
"devDependencies": {
"@iconify/json": "^2.2.314",
"@nuxt/eslint-config": "^1.1.0",
"@nuxt/test-utils": "^3.19.2",
"@nuxtjs/eslint-module": "^4.1.0",
"@playwright/test": "^1.54.1",
"@testing-library/vue": "^8.1.0",
"@typescript-eslint/typescript-estree": "^8.26.0",
"@vitejs/plugin-vue": "^4.6.2",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"ajv": "^8.17.1",
"eslint": "^9.21.0",
"happy-dom": "^18.0.1",
"msw": "^2.10.4",
"nuxt": "^3.15.4",
"openapi-typescript": "^7.6.1",
"sass-embedded": "^1.85.1",
"typescript": "^5.8.2",
"vite": "^4.3.9",
"vitest": "^3.2.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.7.2",
"@mdi/font": "^7.4.47",
"@pinia/nuxt": "^0.10.1",
"chart.js": "^4.4.8",
"date-fns": "^4.1.0",
"pinia": "^3.0.1",
"unplugin-icons": "^22.1.0",
"vue-chartjs": "^5.3.2",
"vue-demi": "^0.14.10",
"vuetify": "^3.7.15",
"vuetify-nuxt-module": "^0.17.0"
}
}