-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"test": "jest",
"testing": "jest --watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production"
},
"devDependencies": {
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@headlessui/vue": "^1.0.0",
"@heroicons/vue": "^1.0.1",
"@inertiajs/inertia": "^0.8.4",
"@inertiajs/inertia-vue3": "^0.3.5",
"@inertiajs/progress": "^0.2.4",
"@tailwindcss/forms": "^0.2.1",
"@testing-library/jest-dom": "^5.11.10",
"@testing-library/user-event": "^14",
"@testing-library/vue": "^6.4",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.4",
"autoprefixer": "^10.2.4",
"axios": "^0.21",
"axios-mock-adapter": "^1.19.0",
"babel-jest": "^26.6.3",
"flush-promises": "^1.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"laravel-mix": "^6.0.6",
"lodash": "^4.17.19",
"postcss": "^8.2.1",
"postcss-import": "^12.0.1",
"tailwindcss": "^2.0.3",
"three": "^0.127.0",
"vee-validate": "^4.3.0",
"vue": "^3.0.5",
"vue-jest": "^5.0.0-alpha.7",
"vue-loader": "^16.1.2",
"wait-for-expect": "^3.0.2",
"yup": "^0.32.9"
},
"jest": {
"roots": [
"<rootDir>/resources/js/"
],
"setupFiles": [
"<rootDir>/resources/js/jestSetup.js"
],
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|svg|ttf|woff|woff2)$": "<rootDir>/resources/js/__mocks__/fileMock.js",
"\\.(css|less|scss)$": "<rootDir>/node_modules/identity-obj-proxy",
"^@/(.*)$": "<rootDir>/resources/js/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.vue$": "<rootDir>/node_modules/vue-jest"
}
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}