-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.02 KB
/
package.json
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
{
"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 --ext .js,.vue resources/js",
"lint:watch": "nodemon --exec 'npm run lint' --ext js,vue",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --passWithNoTests",
"test:e2e": "npm run cypress:headless"
},
"dependencies": {
"@floating-ui/vue": "^1.1.4",
"@headlessui/vue": "^1.7.16",
"@umn-latis/cla-vue-template": "^1.1.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vueuse/core": "^10.2.1",
"axios": "^0.18.1",
"bootstrap": "^4.4.1",
"dayjs": "^1.11.9",
"file-saver": "^2.0.5",
"fuse.js": "^6.6.2",
"jquery": "^3.4.1",
"lodash-es": "^4.17.21",
"p-debounce": "^4.0.0",
"p-map": "^6.0.0",
"papaparse": "^5.4.1",
"pinia": "^2.1.7",
"popper.js": "^1.16.1",
"qs": "^6.13.0",
"v-tooltip": "^2.0.3",
"vue": "^3.1.0",
"vue-router": "4",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.6",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.195",
"@types/qs": "^6.9.15",
"@types/sortablejs": "^1.15.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/compiler-sfc": "^3.1.0",
"autoprefixer": "^10.4.14",
"cross-env": "^5.2.1",
"cypress": "13.4.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-cypress": "^2.14.0",
"eslint-plugin-vue": "^9.15.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"laravel-vite-plugin": "^0.7.8",
"nodemon": "^3.0.1",
"postcss": "^8.4.27",
"prettier": "3.0.0",
"prettier-2": "npm:prettier@^2",
"sass": "^1.44.0",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.1.6",
"vite": "^4.4.3"
}
}