forked from codemod-com/codemod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.21 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
{
"name": "@codemod-com/codemod",
"version": "0.0.0-development",
"type": "module",
"author": "Codemod, Inc.",
"license": "Apache License, Version 2.0",
"description": "A monorepo for all the interconnected tools of codemod.com",
"private": true,
"packageManager": "[email protected]",
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
},
"engines": {
"node": ">=20.x",
"pnpm": ">=8.x"
},
"keywords": [
"codemod",
"migration",
"jscodeshift",
"ts-morph",
"next.js",
"react",
"refactoring",
"transform",
"cli",
"studio",
"AST"
],
"repository": {
"type": "git",
"url": "https://github.com/codemod-com/codemod.git"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"build:local": "turbo run build:local",
"build:prod": "turbo run build:prod",
"build:publish": "turbo run build:publish",
"clean": "turbo run clean",
"link": "turbo run link",
"lint": "biome check .",
"lint:write": "biome check --write --diagnostic-level=error .",
"lint:linter": "biome lint --write --diagnostic-level=error .",
"lint:formatter": "biome format --write --diagnostic-level=error .",
"test": "pnpm run test:unit && pnpm run test:backend",
"test:silent": "pnpm run test:unit --silent && pnpm run test:backend --silent",
"test:unit": "vitest run --exclude \"(apps/backend/**/*.*|packages/codemods/next/13/app-directory-boilerplate/test/test.win.ts)\"",
"test:backend": "pnpm --filter @codemod-com/backend test",
"test:win": "vitest run packages/codemods/next/13/app-directory-boilerplate/test/test.win.ts",
"coverage": "pnpm test:unit --coverage",
"prepare": "husky install",
"release:changelog": "node scripts/releaseChangelog.mjs",
"db:up": "docker-compose up -d",
"db:generate": "turbo run db:generate",
"db:migrate:create": "turbo run db:migrate:create -- --name ",
"db:migrate:deploy": "turbo run db:migrate:deploy",
"db:push": "turbo run db:push",
"db:reset": "turbo run db:reset",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@codemod-com/tsconfig": "workspace:*",
"@codemod-com/utilities": "workspace:*",
"@total-typescript/ts-reset": "^0.4.2",
"@types/node": "^20.5.1",
"@vitest/coverage-v8": "^1.0.1",
"commitizen": "^4.3.0",
"concurrently": "^8.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"semantic-release": "^24.0.0",
"tsx": "^4.2.0",
"turbo": "^1.10.14",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.4"
},
"lint-staged": {
"*": [
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true --diagnostic-level=error"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@babel/core"]
},
"overrides": {
"postcss": "8.4.35",
"whatwg-url": "^14.0.0"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}