-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"cypress": "cypress open --env failOnSnapshotDiff=false",
"cypress:headless": "cypress run --browser chrome",
"dev": "vite",
"format": "prettier --write \"./**/*.{js,vue,ts,json,css,scss,md}\"",
"lint": "eslint resources/js",
"typecheck": "vue-tsc --noEmit",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:e2e": "npm run cypress:headless"
},
"dependencies": {
"@floating-ui/vue": "^1.1.11",
"@headlessui/vue": "^1.7.23",
"@umn-latis/cla-vue-template": "^3.1.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vueuse/core": "^10.11.1",
"axios": "^1.16.0",
"bootstrap": "^4.6.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"jquery": "^3.7.1",
"lodash-es": "^4.18.1",
"p-debounce": "^4.0.0",
"p-map": "^6.0.0",
"papaparse": "^5.5.3",
"pinia": "^2.3.1",
"popper.js": "^1.16.1",
"qs": "^6.15.1",
"tailwind-merge": "^2.6.1",
"v-tooltip": "^2.1.3",
"vue": "^3.5.34",
"vue-router": "4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@types/lodash": "^4.17.24",
"@types/qs": "^6.15.1",
"@types/sortablejs": "^1.15.9",
"@vue/compiler-sfc": "^3.5.34",
"autoprefixer": "^10.5.0",
"cypress": "^15.14.2",
"eslint": "^10.3.0",
"eslint-plugin-cypress": "^6.4.1",
"eslint-plugin-vue": "^10.9.1",
"jsdom": "^28.1.0",
"laravel-vite-plugin": "^3.1.0",
"postcss": "^8.5.14",
"prettier": "3.8.3",
"sass": "^1.99.0",
"tailwindcss": "^3.4.19",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.12",
"vitest": "^4.1.6",
"vue-tsc": "^3.2.8"
}
}