-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.99 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.99 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "client",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview --port 8080",
"test:unit": "vitest",
"prepare": "husky",
"test:e2e": "start-server-and-test preview http://localhost:8080 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint .",
"format": "prettier --write src/",
"codegen": "openapi-generator-cli generate && node ./scripts/patch-openapi-client.mjs",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview",
"env": "dotenv-run-script .env"
},
"dependencies": {
"@supabase/supabase-js": "^2.104.0",
"@unhead/vue": "^3.1.1",
"@vue-flow/background": "^1.3.2",
"@vue-flow/controls": "^1.1.3",
"@vue-flow/core": "^1.46.4",
"@vue-flow/minimap": "^1.5.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"common-tags": "^1.8.2",
"d3": "^7.9.0",
"dompurify": "^3.4.1",
"dotenv-run-script": "^0.4.1",
"highlight.js": "^11.11.1",
"lodash-es": "^4.17.21",
"luxon": "^3.6.1",
"marked": "^18.0.2",
"nanoid": "^5.1.11",
"reka-ui": "^2.4.1",
"vue": "3.5.35",
"vue-facing-decorator": "3.0.4",
"vue-router": "4.5.1",
"vuex": "4.1.0",
"vuex-facing-decorator": "1.2.7"
},
"devDependencies": {
"@histoire/plugin-vue": "^1.0.0-beta.1",
"@openapitools/openapi-generator-cli": "^2.34.0",
"@prettier/plugin-pug": "3.4.0",
"@tailwindcss/vite": "^4.3.0",
"@tsconfig/node22": "22.0.1",
"@types/common-tags": "^1.8.4",
"@types/d3": "^7.4.3",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "21.1.7",
"@types/lodash": "4.17.16",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.6.2",
"@types/node": "22.14.0",
"@typescript-eslint/parser": "8.32.1",
"@vitejs/plugin-vue": "6.0.7",
"@vue/eslint-config-prettier": "10.2.0",
"@vue/eslint-config-typescript": "14.5.0",
"@vue/language-plugin-pug": "2.2.10",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.7.0",
"cross-env": "^7.0.3",
"cypress": "15.16.0",
"eslint": "9.27.0",
"eslint-plugin-prettier": "5.4.0",
"eslint-plugin-vue": "10.1.0",
"eslint-plugin-vue-pug": "1.0.0-alpha.3",
"glob": "11.1.0",
"histoire": "^1.0.0-beta.1",
"husky": "^9.1.7",
"jiti": "2.4.2",
"jsdom": "26.0.0",
"npm-run-all2": "7.0.2",
"picocolors": "1.1.1",
"postcss": "^8.5.15",
"prettier": "3.5.3",
"sass-embedded": "1.89.0",
"start-server-and-test": "2.0.11",
"tailwindcss": "^4.1.10",
"typescript": "~5.8.0",
"unplugin-vue-components": "^28.8.0",
"vite": "7.3.5",
"vite-plugin-vue-devtools": "8.1.2",
"vite-svg-loader": "^5.1.0",
"vitest": "4.1.8",
"vue-pug-plugin": "2.0.4",
"vue-tsc": "2.2.8"
}
}