-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·89 lines (89 loc) · 2.74 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
82
83
84
85
86
87
88
89
{
"private": true,
"scripts": {
"pre-run": "package-changed run 'npm ci'",
"dev": "npm run pre-run && npm run development",
"development": "mix",
"watch": "mix watch",
"prod": "npm run pre-run && npm run production",
"production": "mix --production",
"test": "jest --env=jsdom resources/js/tests",
"eslint": "eslint 'resources/js/**'",
"stylelint": "stylelint 'resources/sass/'",
"linter": "npm run eslint && npm run stylelint",
"linter-fix": "npm run eslint -- --fix && npm run stylelint -- --fix",
"stat": "SHOW_STAT=true mix --production"
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"@sentry/cli": "^1.72.2",
"@sentry/tracing": "^6.17.9",
"@sentry/vue": "^6.17.9",
"@vue/reactivity": "^3.2.24",
"aos": "^2.3.4",
"axios": "0.23.0",
"core-js": "^3.22.5",
"focus-visible": "5.2.0",
"laravel-mix-polyfill": "^3.0.1",
"maska": "^1.5.0",
"moment": "^2.29.3",
"popper.js": "^1.16.1",
"regenerator-runtime": "^0.13.9",
"scroll-lock": "^2.1.5",
"swiper": "^7.0.9",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"v-calendar": "^3.0.0-alpha.6",
"vue": "3.2.20",
"vue-scrollto": "^2.20.0",
"vue-star-rating": "^2.1.0",
"vue3-recaptcha2": "^1.4.0",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "^7.16.7",
"@types/aos": "^3.0.4",
"@types/scroll-lock": "^2.1.0",
"@types/swiper": "^5.4.3",
"@typescript-eslint/eslint-plugin": "5.1.0",
"@typescript-eslint/parser": "5.1.0",
"@vue/compiler-sfc": "3.2.20",
"@vue/eslint-config-typescript": "8.0.0",
"@vue/test-utils": "^2.0.0-0",
"acorn": "8.5.0",
"acorn-import-assertions": "1.8.0",
"babel-jest": "^27.0.6",
"babel-loader": "8.2.3",
"browser-sync": "2.27.5",
"browser-sync-webpack-plugin": "2.3.0",
"browserslist": "4.17.4",
"clean-webpack-plugin": "^4.0.0",
"cross-env": "7.0.3",
"css-loader": "6.4.0",
"dotenv-webpack": "^7.1.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-vue": "7.20.0",
"jest": "^27.0.5",
"laravel-mix": "6.0.34",
"laravel-mix-bundle-analyzer": "1.0.5",
"package-changed": "1.7.0",
"postcss": "8.3.11",
"resolve-url-loader": "4.0.0",
"sass": "1.43.3",
"sass-loader": "12.2.0",
"stylelint": "^13.13.1",
"stylelint-config-hudochenkov": "5.0.0",
"stylelint-config-sass-guidelines": "8.0.0",
"stylelint-order": "5.0.0",
"swiper": "^7.2.0",
"ts-loader": "9.2.6",
"typescript": "4.4.4",
"vue-jest": "^5.0.0-alpha.10",
"vue-loader": "16.8.1",
"vue3-jest": "^27.0.0-alpha.1"
}
}