-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.79 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 4.79 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "elevator-ui",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:test": "vite build --mode test",
"analyze": "ANALYZE=1 vite build && open dist/bundle-stats.html",
"build:watch": "vite build --watch",
"build:remotedev": "NODE_OPTIONS=--max-old-space-size=4096 vite build --mode development --base \"/assets/elevator-ui/dist/\"",
"build:prod": "vite build --mode production --base \"/assets/elevator-ui/dist/\"",
"preview": "vite preview",
"vue-tsc": "vue-tsc --noEmit --skipLibCheck",
"vue-tsc:watch": "vue-tsc --noEmit --skipLibCheck --watch",
"lint": "eslint --ext .js,.ts,.vue .",
"test": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"cert": "rm -rf .cert && mkdir -p .cert && mkcert -key-file ./.cert/key.pem -cert-file ./.cert/cert.pem 'localhost' 127.0.0.1 0.0.0.0 '::1' '::' `ipconfig getifaddr en0`",
"mock:install": "cd mock-server && npm install",
"mock:serve": "cd mock-server && npm run serve:watch",
"mock:serve:test": "yarn build:test && cd mock-server && npm run serve:watch",
"dev:mock": "VITE_API_PROXY_TARGET=http://localhost:3001 VITE_IS_USING_MOCK_SERVER=true concurrently \"npm run mock:serve\" \"npm run dev\"",
"deploy:dev": "./bin/deploy-dev.sh"
},
"dependencies": {
"@atlaskit/pragmatic-drag-and-drop": "^1.7.4",
"@atlaskit/pragmatic-drag-and-drop-hitbox": "^1.1.0",
"@atlaskit/pragmatic-drag-and-drop-live-region": "^1.3.0",
"@fontsource-variable/fraunces": "^5.2.9",
"@fontsource/barlow": "^5.2.8",
"@fontsource/chakra-petch": "^5.2.7",
"@fontsource/dm-sans": "^5.2.8",
"@fontsource/exo-2": "^5.2.8",
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@fontsource/lato": "^5.2.7",
"@fontsource/megrim": "^5.2.8",
"@fontsource/nunito": "^5.2.7",
"@fontsource/open-sans": "^5.2.7",
"@fontsource/orbitron": "^5.2.8",
"@fontsource/oswald": "^5.2.8",
"@fontsource/outfit": "^5.2.8",
"@fontsource/pacifico": "^5.2.7",
"@fontsource/press-start-2p": "^5.2.7",
"@fontsource/quicksand": "^5.2.10",
"@fontsource/red-hat-display": "^5.2.8",
"@fontsource/red-hat-text": "^5.2.8",
"@fontsource/russo-one": "^5.2.7",
"@fontsource/share-tech-mono": "^5.2.7",
"@fontsource/source-code-pro": "^5.2.7",
"@fontsource/space-grotesk": "^5.2.10",
"@fontsource/vt323": "^5.2.7",
"@fontsource/work-sans": "^5.2.6",
"@headlessui-float/vue": "^0.15.0",
"@headlessui/vue": "^1.7.23",
"@knight-lab/timelinejs": "^3.9.8",
"@tanstack/vue-query": "^5.83.0",
"@tanstack/vue-table": "^8.21.3",
"@turf/circle": "^6.5.0",
"@umn-cla/uppy-aws-s3": "^0.1.1",
"@umn-latis/quill-better-image-module": "^0.2.4",
"@uppy/core": "^4.5.2",
"@uppy/dashboard": "^4.3.4",
"@uppy/drag-drop": "^4.1.3",
"@uppy/file-input": "^4.1.3",
"@uppy/progress-bar": "^4.2.1",
"@uppy/status-bar": "^4.1.3",
"@uppy/vue": "^2.3.0",
"@vueuse/core": "^13.5.0",
"axios": "^1.11.0",
"clsx": "^2.1.1",
"deepmerge": "^4.3.1",
"dompurify": "^3.2.6",
"geojson": "^0.5.0",
"lucide-vue-next": "^0.525.0",
"maplibre-gl": "^3.6.2",
"pinia": "^2.3.1",
"quill": "^2.0.3",
"quill-html-edit-button": "^3.0.0",
"quill-paste-smart": "^2.0.0",
"ramda": "^0.31.3",
"reka-ui": "^2.4.0",
"swiper": "^9.4.1",
"tailwind-merge": "^3.3.1",
"tiny-invariant": "^1.3.3",
"vue": "^3.5.18",
"vue-quilly": "^1.1.4",
"vue-router": "4",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@rushstack/eslint-patch": "^1.12.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@types/geojson": "^7946.0.16",
"@types/ramda": "^0.30.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-vue": "^6.0.0",
"@vitejs/plugin-vue-jsx": "^5.0.1",
"@vue/compiler-sfc": "^3.5.18",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-vue": "^9.33.0",
"happy-dom": "^20.3.4",
"less": "^4.4.0",
"postcss": "^8.5.6",
"postcss-nesting": "^11.3.0",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^7.0.1",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.9.2",
"vite": "^7.0.0",
"vitest": "^3.2.4",
"vue-tsc": "^3.0.5"
},
"packageManager": "yarn@1.22.22"
}