-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "clerk-user-migration-tool",
"version": "0.0.1",
"description": "## Description",
"main": "index.ts",
"bin": "./index.ts",
"keywords": [],
"license": "ISC",
"scripts": {
"clean-logs": "bun ./src/clean-logs/index.ts",
"convert-logs": "bun ./src/convert-logs/index.ts",
"delete": "bun ./src/delete/index.ts",
"export:supabase": "bun ./src/export/index.ts",
"format": "prettier . --write",
"format:test": "prettier . --check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"migrate": "bun ./src/migrate/index.ts",
"prepare": "husky",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"dependencies": {
"@clack/prompts": "^1.0.0-alpha.9",
"@clerk/backend": "^2.29.3",
"@clerk/nextjs": "^6.37.3",
"@clerk/types": "^4.101.11",
"bun": "^1.3.6",
"csv-parser": "^3.2.0",
"dotenv": "16.6.1",
"jose": "^6.1.3",
"mime-types": "^3.0.2",
"p-limit": "^7.2.0",
"pg": "^8.18.0",
"picocolors": "^1.1.1",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/bun": "^1.3.6",
"@types/mime-types": "^3.0.1",
"@types/pg": "^8.16.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"vitest": "^4.0.17"
}
}