-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
executable file
·50 lines (50 loc) · 1.56 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
{
"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",
"lint:scss": "stylelint \"sass/**/*.scss\" --fix",
"lint:js": "eslint js --ext .js,.vue --fix --report-unused-disable-directives",
"lint:php": "composer lint",
"lint": "npm run lint:js && npm run lint:scss",
"test": "npm run lint",
"precommit": "npm run lint"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"browser-sync": "3.0.4",
"browser-sync-webpack-plugin": "2.4.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-vue": "10.5.1",
"eslint-webpack-plugin": "4.2.0",
"laravel-mix-polyfill": "3.0.1",
"postcss": "8.5.6",
"prettier": "3.6.2",
"sass": "1.94.1",
"sass-loader": "16.0.6",
"stylelint": "16.25.0",
"stylelint-config-recess-order": "6.1.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-prettier": "5.0.3",
"stylelint-scss": "6.12.1",
"stylelint-webpack-plugin": "5.0.1",
"vue-eslint-parser": "^10.1.3"
},
"dependencies": {
"bootstrap": "5.3.8",
"jquery": "3.7.1",
"laravel-mix": "6.0.49",
"lodash": "4.17.21"
}
}