-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.78 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
{
"private": true,
"type": "commonjs",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --config=node_modules/laravel-mix/setup/webpack.config.js",
"test": "jest --coverage",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@eslint/js": "^9.14.0",
"@vue/compiler-sfc": "^3.2.0",
"@vue/eslint-config-typescript": "^14.1.3",
"axios": "^1.7",
"bootstrap": "^5.0.0",
"braces": "^3.0.3",
"cross-env": "^5.1",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jquery": "^3.2",
"laravel-mix": "^6.0.49",
"lodash": "^4.17.21",
"micromatch": "^4.0.8",
"popper.js": "^1.12",
"prettier": "^3.0.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.80.7",
"sass-loader": "^16.0.3",
"terser-webpack-plugin": "^5.3.10",
"vue": "^3.2.0",
"vue-loader": "^16.2.0",
"watchpack": "^2.4.2",
"webpack": "^5.72.0"
}
}