-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "mysql-backup",
"version": "1.0.0",
"description": "MySQL backup script for Node.js",
"main": "src/main.ts",
"scripts": {
"build": "webpack --mode=production --define-process-env-node-env=production",
"start": "run-s build && node dist/main.js",
"build:dev": "webpack --mode=development --define-process-env-node-env=development",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/13dante04/node-mysql-backup.git"
},
"devDependencies": {
"@types/7zip-min": "^1.3.1",
"@types/mysql": "^2.15.21",
"@types/node": "^18.11.9",
"@types/webpack": "^5.28.0",
"@webpack-cli/generators": "^3.0.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"declaration-bundler-webpack-plugin": "^1.0.3",
"npm-run-all": "^4.1.5",
"run-s": "^0.0.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"author": "Robert Ban",
"license": "ISC",
"bugs": {
"url": "https://github.com/13dante04/node-mysql-backup/issues"
},
"homepage": "https://github.com/13dante04/node-mysql-backup#readme",
"dependencies": {
"@types/cli-progress": "^3.11.0",
"7zip-min": "^1.4.3",
"cli-progress": "^3.11.2",
"mysql": "^2.18.1"
}
}