-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3 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
{
"name": "seat-chart-editor-v2",
"version": "0.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "cross-env EDITOR=antigravity vite --host 0.0.0.0",
"build:web": "vue-tsc --noEmit && vite build",
"build:test": "node scripts/patch-test-env.js && vite build && git checkout -- index.html src/components/auth/LoginDialog.vue src/components/layout/AppHeader.vue",
"build": "vite build && pkg server.cjs --targets node18-win-x64 --out-path dist/bin && \"C:\\Program Files (x86)\\NSIS\\makensis.exe\" installer.nsi",
"build:full": "npm run build && electron-builder --win",
"build:desktop": "tauri build",
"build:lite": "npm run build:desktop",
"preview": "vite preview",
"build:nsis": "vite build && pkg server.cjs --targets node18-win-x64 --out-path dist/bin && makensis installer.nsi",
"build:exe": "npm run build && pkg server.cjs --targets node18-win-x64 --out-path dist/bin",
"deploy:main": "git checkout main && git merge @{-1} --no-edit && git push origin main && git checkout @{-1}",
"type-check": "vue-tsc --noEmit",
"type-check:watch": "vue-tsc --noEmit --watch",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:student": "vitest run src/composables/__tests__/useStudentData.test.js",
"test:seat": "vitest run src/composables/__tests__/useSeatChart.test.js",
"test:assignment": "vitest run src/composables/__tests__/useAssignment.test.js",
"test:integration": "vitest run src/composables/__tests__/integration.test.js",
"test:edge": "vitest run src/composables/__tests__/edge-cases.test.js",
"test:ci": "vitest run --coverage --reporter=dot --reporter=json --reporter=html"
},
"dependencies": {
"@playwright/test": "^1.59.1",
"@vueuse/core": "^14.2.1",
"bcryptjs": "^3.0.3",
"lucide-vue-next": "^1.0.0",
"vue": "^3.5.22",
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^2.1.9",
"@vitest/ui": "^2.1.9",
"@vue/test-utils": "^2.4.6",
"@yao-pkg/pkg": "^6.15.0",
"cross-env": "^10.1.0",
"electron": "^40.8.0",
"electron-builder": "^26.8.1",
"happy-dom": "^14.12.3",
"typescript": "^6.0.3",
"vite": "^7.3.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-vue-devtools": "^8.0.3",
"vitest": "^2.1.9",
"vue-tsc": "^3.2.7"
},
"description": "This template should help get you started developing with Vue 3 in Vite.",
"main": "electron-main.cjs",
"bin": "server.cjs",
"build": {
"appId": "com.braydensce.app",
"productName": "BraydenSCE",
"directories": {
"output": "dist_electron"
},
"win": {
"target": "nsis"
}
},
"keywords": [],
"author": "Braydenccc",
"license": "GPL-3.0-or-later",
"pkg": {
"assets": [
"dist/**/*"
]
}
}