-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.55 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.55 KB
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
{
"name": "@bulgogi-whopper/taptik-cli",
"version": "0.0.1",
"description": "A CLI tool that enables easy migration and synchronization of settings and environments between various AI development tools",
"author": "Team of 3",
"private": true,
"license": "Beerware",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"**/*.{js,ts,json,md}\" --ignore-unknown",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"cli": "ts-node src/cli.ts",
"cli:build": "nest build && node dist/src/cli.js",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:run": "vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:cli": "vitest run src/modules/build/commands/build.command.integration.spec.ts",
"cli:help": "npm run cli -- --help",
"cli:build-help": "npm run cli -- build --help",
"cli:test": "npm run cli -- health",
"dev:setup": "npm run cli:help && npm run cli:build-help && echo '🎉 Development setup complete'"
},
"dependencies": {
"@inquirer/prompts": "^7.8.0",
"@nestjs/common": "^11.1.5",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.5",
"@nestjs/platform-express": "^11.1.5",
"@nestjs/terminus": "^11.0.0",
"@supabase/supabase-js": "^2.53.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"chalk": "^5.6.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"cli-table3": "^0.6.5",
"fs-extra": "^11.3.1",
"inquirer": "^12.9.4",
"js-yaml": "^4.1.0",
"keytar": "^7.9.0",
"minimatch": "^10.0.3",
"nest-commander": "^3.18.0",
"open": "^10.2.0",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"tar": "^7.4.3"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@golevelup/ts-jest": "^0.7.0",
"@jest/globals": "^30.0.5",
"@nestjs/cli": "^11.0.10",
"@nestjs/schematics": "^11.0.7",
"@nestjs/testing": "^11.1.5",
"@types/body-parser": "^1.19.6",
"@types/connect": "^3.4.38",
"@types/cookiejar": "^2.1.5",
"@types/eslint-scope": "^8.3.2",
"@types/estree": "^1.0.8",
"@types/express": "^5.0.3",
"@types/express-serve-static-core": "^5.0.7",
"@types/http-errors": "^2.0.5",
"@types/js-yaml": "^4.0.9",
"@types/json-schema": "^7.0.15",
"@types/methods": "^1.1.4",
"@types/node": "^22.10.5",
"@types/prompts": "^2.4.9",
"@types/range-parser": "^1.2.7",
"@types/send": "^0.17.5",
"@types/serve-static": "^1.15.8",
"@types/supertest": "^6.0.3",
"@types/tar": "^6.1.13",
"@types/through": "^0.0.33",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.32.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-unicorn": "^60.0.0",
"prettier": "^3.6.2",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}