-
-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.17 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 2.17 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
{
"name": "editsvgcode",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently -n vite,firebase -c cyan,yellow \"vite\" \"firebase emulators:start --only firestore,auth --import .emulators/firebase --export-on-exit\"",
"dev:vite": "vite",
"build": "tsc && vitest run && vite build",
"preview": "vite preview",
"emulators": "firebase emulators:start --only firestore,auth --import .emulators/firebase --export-on-exit",
"ship": "npm run build && npm run upload-sourcemaps && npm run deploy",
"ship:beta": "npm run build && npm run upload-sourcemaps && npm run deploy:beta",
"deploy": "firebase deploy --only hosting,firestore",
"deploy:beta": "firebase deploy --only hosting,firestore -P beta",
"upload-sourcemaps": "node scripts/upload-sourcemaps.cjs",
"preview:deploy": "npm run build && firebase hosting:channel:deploy preview --expires 7d",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"e2e": "npm run build && playwright test",
"e2e:ui": "npm run build && playwright test --ui"
},
"dependencies": {
"@mantine/core": "^9.0.2",
"@mantine/hooks": "^9.0.2",
"@mantine/modals": "^9.0.2",
"@mantine/notifications": "^9.0.2",
"@microsoft/applicationinsights-web": "^3.4.1",
"@monaco-editor/react": "^4.7.0",
"@tabler/icons-react": "^3.28.1",
"allotment": "^1.20.2",
"dompurify": "^3.2.4",
"firebase": "^12.12.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.14.0",
"vite-plugin-wasm": "^3.6.0",
"vtracer-webapp": "file:../vtracer/webapp/pkg",
"xml-formatter": "^3.7.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.19.17",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"firebase-tools": "^15.15.0",
"jsdom": "^29.0.1",
"rollup-plugin-visualizer": "^7.0.1",
"sharp": "^0.34.5",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^4.1.0"
}
}