-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.82 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "dbzar",
"version": "0.0.0-development",
"description": "Agnostic DB Anonymizer",
"homepage": "https://nitzano.github.io/dbzar",
"main": "dist/index.js",
"repository": "git@github.com:nitzano/dbzar.git",
"author": "Nitzan Ohana <16689354+nitzano@users.noreply.github.com>",
"license": "MIT",
"bin": "./dist/cli/dbzar.js",
"files": [
"dist"
],
"keywords": [
"db",
"database",
"anonymizer",
"devops",
"postgres",
"pg",
"mongodb",
"mariadb",
"mysql",
"mock",
"fake"
],
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.4.0",
"@semantic-release/exec": "^6.0.3",
"@shelf/jest-mongodb": "^2.2.0",
"@types/chance": "^1.1.3",
"@types/debug": "^4.1.7",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^18.11.18",
"@types/node-emoji": "^2.1.0",
"@types/pg": "^8.6.4",
"@types/rosie": "^0.0.42",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"jest": "^27.4.7",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.15",
"pg-mem": "^2.2.2",
"prettier": "^2.5.1",
"rimraf": "^4.1.2",
"rosie": "^2.1.0",
"semantic-release-docker": "^2.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"typescript-json-schema": "^0.59.0",
"xo": "^0.49.0"
},
"scripts": {
"prebuild": "yarn clean",
"build": "tsc",
"build:prod": "yarn build -p tsconfig.prod.json",
"clean": "rimraf dist/**",
"lint": "xo",
"lint:fix": "yarn lint --fix",
"test": "jest",
"test:watch": "yarn test --watch",
"prepare": "husky install",
"db:seed:mongo": "ts-node src/test/scripts/db-seed-mongo.ts dotenv_config_path=.dev.env",
"db:seed:pg": "ts-node src/test/scripts/db-seed-pg.ts dotenv_config_path=.dev.env",
"db:seed:maria": "ts-node src/test/scripts/db-seed-mariadb.ts dotenv_config_path=.dev.env",
"commit": "cz",
"start": "node dist/cli/dbzar.js",
"dbzar": "ts-node -r dotenv/config src/cli/dbzar.ts",
"dbzar:prod": "node -r dotenv/config dist/cli/dbzar.js",
"gen-schema": "yarn typescript-json-schema tsconfig.json Config --noExtraProps --required -o src/config/assets/config.schema.json"
},
"lint-staged": {
"*.ts": "xo --fix"
},
"dependencies": {
"ajv": "^8.10.0",
"chalk": "4.1.2",
"chance": "^1.1.8",
"commander": "^10.0.0",
"connection-string": "^4.3.5",
"cosmiconfig": "^9.0.0",
"debug": "^4.3.3",
"dotenv": "^16.0.0",
"dotenv-expand": "^10.0.0",
"enquirer": "^2.3.6",
"knex": "^2.0.0",
"lodash": "^4.17.21",
"mongodb": "^4.3.0",
"mysql": "^2.18.1",
"node-emoji": "^2.1.0",
"ora": "5.4.1",
"pg": "^8.7.1"
},
"packageManager": "yarn@3.3.1"
}