-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 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
36
37
38
39
40
41
42
43
44
{
"name": "ftp-file-sync",
"version": "1.0.0",
"description": "Sync files from a ftp server to your server trough a clean web UI.",
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"prestart": "npm run build",
"start": "node build/index.js",
"start-debug": "nodemon --watch \"src/**/*.ts\" --exec \"ts-node\" src/index.ts",
"build-binaries": "npm run build && rm dist/* -rf && pkg . --out-path bin/",
"lint": "eslint . --ext .ts --quiet --fix"
},
"author": "Casper verswijvelt",
"license": "ISC",
"dependencies": {
"basic-ftp": "^4.6.2",
"chokidar": "^3.5.1",
"cli-progress": "^3.8.2",
"express": "^4.17.1",
"inquirer": "^7.3.3",
"mkdirp": "^1.0.4",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/express": "^4.17.11",
"@types/mkdirp": "^1.0.1",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"nodemon": "^2.0.7",
"pkg": "^4.4.9",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"pkg": {
"scripts": "src/**/*.js",
"assets": "public/**"
}
}