-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.12 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
{
"name": "@emigrate/root",
"version": "0.0.0",
"private": true,
"description": "A monorepo for Emigrate the modern, modular, and flexible migration tool",
"type": "module",
"scripts": {
"prepare": "bin/prepare",
"build": "turbo run build",
"build:watch": "turbo run build:watch",
"checks": "turbo run checks",
"release": "run-s build && changeset publish",
"format": "prettier --write \"**/*.{ts,tsx,md,json,js,mjs}\"",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"changeset": "changeset",
"lint-staged": "lint-staged",
"pre-commit": "run-s build lint-staged",
"commit-msg": "commitlint --edit",
"pre-push": "turbo run checks"
},
"keywords": [],
"author": {
"name": "Aboviq AB",
"email": "dev@aboviq.com",
"url": "https://www.aboviq.com"
},
"contributors": [
{
"name": "Joakim Carlstein",
"email": "joakim@aboviq.com"
}
],
"homepage": "https://github.com/aboviq/emigrate",
"repository": "https://github.com/aboviq/emigrate",
"bugs": "https://github.com/aboviq/emigrate/issues",
"license": "MIT",
"volta": {
"node": "20.9.0",
"pnpm": "9.4.0"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=18"
},
"lint-staged": {
"*.{js,ts,tsx,html}": [
"xo --fix",
"prettier --write"
],
"*.{json,md,yaml}": [
"prettier --write"
]
},
"xo": {
"space": true,
"prettier": true,
"rules": {
"complexity": 0,
"capitalized-comments": 0
},
"overrides": [
{
"files": "packages/**/*.test.ts",
"rules": {
"@typescript-eslint/no-floating-promises": 0,
"max-params": 0
}
}
]
},
"dependencies": {
"@changesets/cli": "2.27.1",
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.1",
"@types/node": "20.10.4",
"glob": "10.3.10",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"tsx": "4.15.7",
"turbo": "2.0.5",
"typescript": "5.5.2",
"xo": "0.56.0"
}
}