-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
{
"private": true,
"scripts": {
"dev": "npm run development",
"development": "mix",
"watch": "mix watch",
"watch-poll": "mix watch -- --watch-options-poll=1000",
"hot": "mix watch --hot",
"prod": "npm run production",
"production": "mix --production",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@tailwindcss/forms": "^0.2.1",
"@vue/compiler-sfc": "^3.0.7",
"@vue/test-utils": "^2.0.0-rc.4",
"alpinejs": "^2.8.1",
"autoprefixer": "^10.2.5",
"axios": "^0.21",
"babel-jest": "^26.6.3",
"browser-sync": "^2.26.14",
"browser-sync-webpack-plugin": "^2.3.0",
"jest": "^26.6.3",
"laravel-mix": "^6.0.13",
"lodash": "^4.17.21",
"postcss": "^8.2.8",
"postcss-import": "^12.0.1",
"tailwindcss": "^2.0.3",
"vue-jest": "^5.0.0-alpha.8",
"vue-loader": "^16.1.2"
},
"dependencies": {
"@ckeditor/ckeditor5-build-classic": "^31.0.0",
"@ckeditor/ckeditor5-vue": "^2.0.1",
"@fullcalendar/core": "^5.10.1",
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1",
"@fullcalendar/vue3": "^5.10.1",
"@yaireo/tagify": "^4.9.2",
"moment": "^2.29.1",
"vue": "^3.0.7",
"vue-router": "^4.0.5",
"vuex": "^4.0.0"
},
"jest": {
"testRegex": "tests/components/.*.test.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^@/(.*)$": "<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"
}
}
]
]
}
}