-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
117 lines (117 loc) · 3.79 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ilink",
"description": "Console ilink tools",
"version": "0.1.3",
"license": "MIT",
"author": "EndyKaufman <[email protected]>",
"keywords": [
"consul",
"env",
"sync",
"files-to-consul",
"env-to-consul",
"files2consul",
"env2consul",
"consul-to-files",
"consul-to-env",
"consul2files",
"consul2env",
"cli",
"ilink"
],
"bugs": {
"url": "https://github.com/i-link-pro-team/ilink/issues"
},
"homepage": "https://github.com/i-link-pro-team/ilink",
"repository": {
"type": "git",
"url": "git+https://github.com/i-link-pro-team/ilink.git"
},
"maintainers": [
{
"name": "EndyKaufman",
"email": "[email protected]"
}
],
"readme": "README.md",
"scripts": {
"nx": "nx",
"rucken": "rucken",
"start": "node ./dist/libs/ilink-console-tools/src/main.js",
"build": "npm run nx -- run-many --target=build --all && ./scripts/add-header-to-ilink.js && npm run lib:build-changelog",
"release": "standard-version -a",
"publish": "npm publish ./dist/libs/ilink-console-tools && npm publish ./dist/libs/nestjs-consul-kv-realtime",
"create-release": "npm run test && npm run build && npm run release && git push --follow-tags origin develop",
"test": "npm run build && npm run nx -- run-many --target=test --all",
"lint": "npm run tsc:lint && nx workspace-lint && nx run-many --target=lint --all",
"lint:fix": "npm run tsc:lint && nx workspace-lint --fix && nx run-many --target=lint --all --fix && nx format:write --all",
"tsc:lint": "tsc --noEmit -p tsconfig.base.json",
"lib:build-changelog": "./node_modules/.bin/cp-cli ./CHANGELOG.md ./dist/libs/ilink-console-tools/CHANGELOG.md && ./node_modules/.bin/cp-cli ./CHANGELOG.md ./dist/libs/nestjs-consul-kv-realtime/CHANGELOG.md",
"generate": "npm run rucken -- prepare --locales=en,ru --default-locale=en && npm run lint:fix",
"create-readme": "npm run start -- env-to-consul --help && npm run start -- consul-to-env --help",
"prepare": "husky install"
},
"private": true,
"devDependencies": {
"@nestjs/schematics": "9.0.3",
"@nestjs/testing": "9.1.4",
"@nrwl/cli": "14.8.6",
"@nrwl/eslint-plugin-nx": "14.8.6",
"@nrwl/jest": "14.8.6",
"@nrwl/js": "14.8.6",
"@nrwl/linter": "14.8.6",
"@nrwl/nest": "14.8.6",
"@nrwl/node": "14.8.6",
"@nrwl/workspace": "14.8.6",
"@types/consul": "^0.40.0",
"@types/jest": "28.1.8",
"@types/node": "18.7.1",
"@types/pg": "8.6.5",
"@types/recursive-readdir": "2.2.1",
"@types/replace-ext": "2.0.0",
"@typescript-eslint/eslint-plugin": "5.40.0",
"@typescript-eslint/parser": "5.40.0",
"cp-cli": "2.0.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"husky": "^8.0.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"lint-staged": "^13.0.3",
"log4js": "6.6.1",
"nestjs-console": "8.0.0",
"nx": "14.8.6",
"prettier": "2.7.1",
"recursive-readdir": "2.2.2",
"replace-ext": "2.0.0",
"rucken": "^4.3.1",
"sort-paths": "1.1.1",
"standard-version": "9.5.0",
"testcontainers": "8.13.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
},
"dependencies": {
"@nestjs/common": "9.1.4",
"@nestjs/core": "9.1.4",
"@nestjs/platform-express": "9.1.4",
"consul": "^1.0.1",
"dotenv": "^16.0.2",
"fast-deep-equal": "3.1.3",
"lodash.mergewith": "4.6.2",
"reflect-metadata": "0.1.13",
"rxjs": "7.1.0",
"source-map-support": "0.5.21",
"tslib": "2.0.0"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run generate && npm run lib:build-changelog && git add ."
}
},
"lint-staged": {
"*.{js,ts}": "eslint --fix",
"*.{js,ts,css,scss,md}": "prettier --ignore-unknown --write"
}
}