-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.5 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"cypress": "cypress open --env failOnSnapshotDiff=false",
"cypress:headless": "cypress run --browser chrome",
"cypress:update-image-snapshots": "cypress run --browser chrome --env updateSnapshots=true",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm run jest -- --watch",
"test:e2e": "npm run cypress:headless",
"test:unit": "npm run jest",
"test": "npm run test:unit && npm run test:e2e",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write ."
},
"devDependencies": {
"@simonsmith/cypress-image-snapshot": "^10.0.3",
"@types/jest": "^30.0.0",
"@types/quill": "^2.0.14",
"@types/ramda": "^0.31.1",
"@types/stopword": "^2.0.3",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/eslint-config-typescript": "^14.7.0",
"autoprefixer": "^10.4.20",
"cross-env": "^10.1.0",
"cypress": "^15.14.2",
"cypress-file-upload": "^5.0.8",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^6.4.1",
"eslint-plugin-jest": "^29.15.2",
"eslint-plugin-vue": "^10.9.1",
"gh-pages": "^6.1.1",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"laravel-vite-plugin": "^3.1.0",
"postcss": "^8.4.47",
"prettier": "^3.2.5",
"sass": "^1.77.4",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vue-tsc": "^3.2.8"
},
"dependencies": {
"@tailwindcss/forms": "^0.5.9",
"@types/k6": "^1.0.2",
"@umn-latis/cla-vue-template": "^3.1.0",
"@umn-latis/quill-better-image-module": "^0.2.2",
"@vue-a11y/announcer": "^3.1.5",
"axios": "^1.6",
"bootstrap": "^4.6.0",
"chart.js": "^4.4.2",
"chartjs-chart-wordcloud": "^4.4.0",
"compromise": "^14.13.0",
"dotenv": "^17.4.2",
"jquery": "^3.7.1",
"katex": "^0.16.10",
"laravel-echo": "^2.1.4",
"lodash": "^4.17.21",
"pusher-js": "^8.4.0",
"quill": "^2.0.2",
"ramda": "^0.32.0",
"simpleheat": "^0.4.0",
"stemmer": "^2.0.1",
"stopword": "^3.0.1",
"vue": "^3.4.27",
"vue-chartjs": "^5.3.1",
"vue-easy-lightbox": "^1.19.0",
"vue-fullscreen": "^3.1.1",
"vue-google-charts": "^1.1.0",
"vue-router": "^4.3.2",
"vue-select": "^4.0.0-beta.6",
"vuedraggable": "^4.1.0",
"vuex": "^4.1.0"
},
"browserslist": [
"defaults"
]
}