-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.95 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
64
65
66
67
68
69
70
{
"name": "mongo-images",
"version": "1.7.1",
"private": true,
"description": "MongoDB docker container image with automation utilities.",
"bugs": "https://github.com/rfprod/mongo/issues",
"repository": "https://github.com/rfprod/mongo",
"license": "MIT",
"author": "rfprod <[email protected]> (https://github.com/rfprod)",
"scripts": {
"audit:fix": "rm -rf ./node_module && yarn install --ignore-scripts; npm i --package-lock-only; rm ./yarn.lock; npm audit fix; yarn import; rm -rf ./node_modules ./package-lock.json; yarn install",
"docker:build:mongo": "sudo docker build -t webappdb -f .docker/mongo.Dockerfile .",
"docker:debug:mongo": "echo \"CONTAINER_ID environment variable value is $CONTAINER_ID\" & sudo docker exec -it $CONTAINER_ID bash",
"docker:run:mongo": "sudo docker run --rm --name webappdb -it -p 127.0.0.1:27017:27017 webappdb",
"env:cleanup": "bash tools/shell/env.sh cleanup",
"env:create": "bash tools/shell/env.sh create",
"env:help": "bash tools/shell/env.sh ?",
"image:encode": "npx ts-node -P ./tools/tsconfig.tools.json ./tools/ts/image-encoder/encode-image.ts",
"postinstall": "husky install && npx sort-json package.json && npx sort-package-json",
"install:shellcheck:linux": "sudo apt install shellcheck",
"install:shellcheck:osx": "brew install shellcheck",
"lint": "eslint tools/",
"lint:fix": "eslint tools/ --fix",
"lint:shell": "shellcheck tools/shell/*.sh tools/shell/utils/*.sh",
"mongo:drop": "ts-node -P tools/tsconfig.tools.json tools/ts/mongo/drop.ts",
"mongo:dump": "bash tools/shell/mongo.sh dump",
"mongo:export": "bash tools/shell/mongo.sh export",
"mongo:import": "bash tools/shell/mongo.sh import",
"mongo:init": "ts-node -P tools/tsconfig.tools.json tools/ts/mongo/init.ts",
"mongo:restore": "bash tools/shell/mongo.sh restore",
"workspace:help": "npx ts-node -P ./tools/tsconfig.tools.json ./tools/ts/package-commands.ts"
},
"config": {
"commitizen": {
"maxHeaderWidth": 80,
"maxLineWidth": 100,
"minHeaderWidth": 16,
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "19.0.3",
"@commitlint/config-conventional": "19.0.3",
"@types/node": "20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.0",
"@typescript-eslint/parser": "7.1.0",
"commitizen": "4.3.0",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-rxjs": "5.0.3",
"eslint-plugin-simple-import-sort": "12.0.0",
"eslint-plugin-unicorn": "51.0.1",
"husky": "9.0.11",
"mongodb": "6.4.0",
"prettier": "3.2.5",
"rxjs": "7.8.1",
"sort-json": "2.0.1",
"sort-package-json": "2.8.0",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.3.3"
},
"engines": {
"node": ">=20.11.1",
"npm": ">=10.4.0"
}
}