-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.05 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
55
56
57
58
59
60
61
62
63
{
"name": "@fdmg/imgix-upload",
"version": "0.0.29",
"description": "Command-line tool to upload images to the FDMG IMGIX S3 Bucket",
"main": "dist/app.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/FDMediagroep/fdmg-imgix-upload"
},
"bin": {
"fiu": "cli.js",
"fdmg-imgix-upload": "cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run build:dev",
"build:prod": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"dry-run": "npm run start -- --dry-run -s -v",
"dogfood": "dotenv fiu -- -v -s -i ./images",
"dogfood2": "dotenv fiu -- -v -s -i ./public/images",
"help": "node -r dotenv/config dist/app.js --help",
"start": "node -r dotenv/config dist/app.js -e development -o ./imageMap.json -i ./images -s -v",
"start2": "node -r dotenv/config dist/app.js -e acceptance -o ./imageMap.json -i ./public/images -s -v",
"release:fdmg": "node modifyPackageJson.js -s @fdmg",
"release:fdmediagroep": "node modifyPackageJson.js -s @fdmediagroep",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "npm run watch:dev",
"watch:dev": "webpack --mode=development -w",
"watch:prod": "webpack --mode=production -w"
},
"author": "Willem Liu",
"license": "ISC",
"devDependencies": {
"@aws-sdk/client-s3": "^3.689.0",
"@aws-sdk/lib-storage": "^3.691.0",
"@fdmg/imgix-upload": "^0.0.30",
"@types/glob": "^8.1.0",
"@types/mime-types": "^2.1.4",
"@types/progress": "^2.0.7",
"@types/yargs": "^17.0.33",
"assert": "^2.1.0",
"dotenv": "^16.4.5",
"dotenv-cli": "^7.4.2",
"edit-json-file": "^1.8.0",
"file-extension": "^4.0.5",
"glob": "^11.0.0",
"mime-types": "^2.1.35",
"progress": "^2.0.3",
"sha1-file": "^3.0.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"yargs": "^17.7.2",
"zlib": "^1.0.5"
}
}