-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·142 lines (142 loc) · 4.69 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "shell-config",
"version": "2.18.17",
"description": "CLI Tool for MacOS setup",
"author": "Aviv Ben Shahar",
"private": false,
"license": "MIT",
"bin": "dist/src/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Avivbens/shell-config.git"
},
"homepage": "https://github.com/Avivbens/shell-config#readme",
"scripts": {
"build": "nest build",
"pack": "./project-scripts/pack.js",
"pack-local": "./project-scripts/pack-local.sh",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint",
"lint:fix": "eslint --fix",
"start": "node dist/main.js",
"start:dev": "ts-node src/main.ts",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"create-fig-spec": "./project-scripts/create-fig-spec.sh",
"publish-fig-spec": "./project-scripts/publish-fig-spec.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prepare": "husky || exit 0",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@inquirer/core": "^8.1.0",
"@nestjs/axios": "^3.0.2",
"@nestjs/common": "^10.3.7",
"@nestjs/core": "^10.3.7",
"ansi-escapes": "^4.3.2",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"eslint-plugin-jsonc": "^2.15.1",
"inquirer": "^8.2.6",
"jsonc-eslint-parser": "^2.4.0",
"listr2": "^3.14.0",
"nest-commander": "^3.12.5",
"ora": "^5.4.1",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"semver": "^7.6.0"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@nestjs/cli": "^10.3.2",
"@nestjs/schematics": "^10.1.1",
"@nestjs/testing": "^10.3.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^12.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.3",
"@semantic-release/release-notes-generator": "^13.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/express": "^4.17.21",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/semver": "^7.5.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@yao-pkg/pkg": "^5.11.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semantic-release": "^23.0.8",
"source-map-support": "^0.5.21",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5",
"vitepress": "^1.1.3"
},
"//": "Force versions to support CommonJS",
"overrides": {
"lint-staged": {
"listr2": "8.0.1"
},
"listr2": {
"wrap-ansi": "7.0.0",
"cli-truncate": "2.1.0",
"log-update": "4.0.0"
},
"axios": "0.27.2"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"assets/**/*",
"zsh/**/*"
],
"targets": [
"node20-macos-x64"
],
"outputPath": "bin"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleNameMapper": {
"^@common/(.*)$": "<rootDir>/common/$1",
"^@models/(.*)$": "<rootDir>/models/$1",
"^@services/(.*)$": "<rootDir>/services/$1",
"^@commands/(.*)$": "<rootDir>/commands/$1"
}
}
}