-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.23 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.23 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
{
"name": "ewake",
"version": "1.0.38",
"description": "Web application that manages computers to wake up via WakeOnLan",
"private": true,
"scripts": {
"increase_version": "npm version patch",
"build:dist": "webpack --config webpack/webpack.prod.js --progress",
"build:dist-dev": "webpack --config webpack/webpack.dev.js",
"build:dist-docker": "webpack --config webpack/webpack.prod.js --progress && docker --debug build --pull -t 1thorsten/ewake --file ./docker/Dockerfile .",
"docker:run": "docker compose -p ewake -f docker/docker-compose.yml up",
"compile": "node utils/RemoveTranspiledFiles.js ./src-js && tsc --build -pretty --clean && tsc --build"
},
"devDependencies": {
"@types/dashdash": "^1.14.0",
"@types/node": "^22.13.5",
"@types/wake_on_lan": "^0.0.33",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^13.0.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^9.1.2",
"typescript": "^5.1.3",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"axios": "^1.4.0",
"dashdash": "^2.0.0",
"dayjs": "^1.10.4",
"request-ip": "^3.3.0",
"wake_on_lan": "^1.0.0"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}