-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.81 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
{
"name": "skeleton",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "webpack --env development --mode development --progress",
"build": "webpack --mode production --progress",
"poststart": "webpack --env development --mode development --progress --watch",
"start": "npm-run-all --parallel watch:server watch:build",
"run": "node ./bin/www",
"watch:build": "webpack --env development --mode development --progress --watch",
"watch:server": "nodemon \"./bin/www\""
},
"engines": {
"node": "20"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.2.0",
"@fortawesome/free-regular-svg-icons": "^6.2.0",
"@fortawesome/free-solid-svg-icons": "^6.2.0",
"@fortawesome/vue-fontawesome": "^3.0.1",
"animate.css": "^3.7.0",
"cookie-parser": "^1.4.7",
"express": "~4.21.2",
"gaugeJS": "^1.3.7",
"http-errors": "~2.0.0",
"ionicons": "^4.5.6",
"jquery": "^3.6.0",
"morgan": "~1.9.1",
"nodemon": "^3.0.1",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"pug": "^3.0.3",
"socket.io": "^4.8.1",
"socket.io-client": "^4.7.2",
"systeminformation": "^5.23.25",
"vue": "^3.5.13",
"vue-socket.io-extended": "^5.0.0-alpha.5",
"vuex": "^4.0.2"
},
"devDependencies": {
"cross-env": "^5.2.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"node-sass": "^9.0.0",
"sass-loader": "^13.0.2",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.2",
"webpack-node-externals": "^3.0.0"
}
}