-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.94 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "webguard",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean-www": "rimraf target/classes/static/app/{src,target/}",
"webpack": "webpack --config webpack/webpack.common.js",
"webapp:build:prod": "npm run webpack -- --mode production",
"webapp:prod": "npm run clean-www && npm run webapp:build:prod --",
"serve": "webpack serve --progress --config webpack/webpack.common.js --mode development",
"start": "npm run serve --"
},
"keywords": [],
"author": "iisi",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@vue/compiler-sfc": "^3.2.47",
"autoprefixer": "^10.4.14",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.2",
"browser-sync-webpack-plugin": "^2.3.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"postcss": "^8.4.47",
"postcss-loader": "^7.2.4",
"rimraf": "^5.0.0",
"sass": "^1.61.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.4.2",
"typescript": "^5.0.3",
"vue-loader": "^16.5.0",
"webpack": "^5.78.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@babel/helpers": "^7.26.10",
"@babel/traverse": "^7.26.5",
"axios": "^1.8.2",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.10.4",
"bootstrap-vue-next": "^0.8.15",
"braces": "^3.0.3",
"cross-spawn": "^7.0.5",
"follow-redirects": "^1.15.9",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"make-dir": "^5.0.0",
"nanoid": "^5.0.9",
"semver": "^7.5.2",
"send": "^1.1.0",
"serve-static": "^1.16.2",
"tar": "^7.4.3",
"vue": "^3.5.13",
"vue-router": "^4.1.6",
"vuex": "^4.1.0"
}
}