-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.28 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
62
63
64
65
66
67
68
69
70
71
{
"name": "node-ui",
"private": true,
"version": "0.7.0",
"license": "Apache-2.0",
"description": "User interface for the FLAME Node software.",
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"type": "module",
"scripts": {
"start": "nuxt start",
"build": "nuxt build",
"coverage": "vitest run --coverage",
"dev": "nuxt dev",
"generate": "nuxt generate",
"build-api": "npx swagger-typescript-api generate -p ./app/services/hub_adapter_swagger.json -o ./app/services/",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prod": "node .output/server/index.mjs",
"test": "vitest",
"test:ci": "CI=true pnpm --reporter-hide-prefix --stream --sequential run test"
},
"dependencies": {
"@pinia/nuxt": "^0.11.3",
"@primeuix/themes": "^1.2.5",
"@primevue/core": "^4.4.1",
"@primevue/forms": "^4.4.1",
"@primevue/nuxt-module": "^4.4.1",
"@sidebase/nuxt-auth": "1.2.0",
"@tailwindcss/postcss": "^4.2.0",
"@tailwindcss/vite": "^4.2.0",
"@types/uuid": "^9.0.8",
"@vueuse/core": "^11.3.0",
"chart.js": "^4.5.1",
"globals": "^15.15.0",
"next-auth": "~4.21.1",
"node-fetch-native": "^1.6.7",
"nuxt": "^4.4.7",
"pinia": "^3.0.4",
"prettier": "^3.6.2",
"primeicons": "^7.0.0",
"primevue": "^4.4.1",
"proxy-agent": "^5.0.0",
"sass": "^1.93.2",
"sass-loader": "^14.2.1",
"swagger-typescript-api": "^13.2.16",
"tailwindcss": "^4.2.0",
"tailwindcss-primeui": "^0.6.1",
"typescript": "^5.9.3",
"vue": "^3.5.28",
"vue-router": "^5.0.3",
"webpack": "^5.102.1"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@nuxt/test-utils": "^4.0.0",
"@types/eslint-config-prettier": "^6.11.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"eslint": "~9.26.0",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-vue": "^9.33.0",
"happy-dom": "^20.8.9",
"msw": "^2.11.6",
"typescript-eslint": "^8.46.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.6"
}
}