-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.55 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
85
86
87
88
89
90
91
92
93
{
"type": "module",
"private": true,
"scripts": {
"test": "jest",
"dev": "vite",
"build": "vite build && mv public/build/.vite/manifest.json public/build/",
"watch-test": "jest -- --watch --notify"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@popperjs/core": "^2.11.8",
"@vitejs/plugin-vue": "^6.0.3",
"@vue/compiler-dom": "^3.5.25",
"@vue/compiler-sfc": "^3.5.25",
"@vue/server-renderer": "^3.5.25",
"@vue/test-utils": "^2.4.6",
"@vue/vue3-jest": "^29.2.6",
"axios": "^1.18.0",
"axios-mock-adapter": "^2.1.0",
"babel-jest": "^29.7.0",
"bootstrap": "^5.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jquery": "^3.7.1",
"laravel-vite-plugin": "^2.0.1",
"lodash": "^4.17.23",
"postcss": "^8.5.6",
"resolve-url-loader": "^5.0.0",
"sass": "^1.97.0",
"sass-loader": "^16.0.6",
"vite": "^7.3.0"
},
"dependencies": {
"clipboard-copy": "^4.0.1",
"intl-tel-input": "^25.13.2",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0",
"v-tables-3": "^0.4.7",
"v-tooltip": "^4.0.0-beta.17",
"validator": "^13.15.23",
"vue": "^3.5.25",
"vue-cropperjs": "^5.0.0",
"vue-datepicker-next": "^1.0.3",
"vue-loader": "^17.4.2",
"vue-loading-overlay": "^6.0.6",
"vue-recaptcha": "^2.0.3",
"vue-router": "^4.6.4",
"vue-select": "^4.0.0-beta.6",
"vuex": "^4.1.0",
"vuex-persist": "^3.1.3"
},
"jest": {
"testEnvironment": "jsdom",
"testEnvironmentOptions": {
"customExportConditions": [
"node",
"node-addons"
]
},
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"moduleDirectories": [
"resources/js",
"node_modules"
],
"transform": {
".*\\.(vue)$": "@vue/vue3-jest",
".*\\.(js)$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/"
],
"testMatch": [
"**/?(*.)+(spec).js"
]
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"packageManager": "yarn@4.10.3",
"resolutions": {
"tar": "7.5.4"
}
}