-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.82 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.82 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
{
"name": "ciolabs",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "pnpm run --recursive build",
"test": "pnpm run --recursive test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"dev": "pnpm run --recursive dev",
"clean": "pnpm run --recursive clean",
"prepare": "husky install",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.7",
"@ciolabs/config-eslint": "workspace:*",
"@ciolabs/config-prettier": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.44.0",
"@typescript-eslint/parser": "^8.44.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^4.2.0",
"husky": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.3.3",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.16.1",
"repository": {
"type": "git",
"url": "https://github.com/customerio/ciolabs.git"
},
"homepage": "https://github.com/customerio/ciolabs#readme",
"author": "Customer.io <win@customer.io>",
"license": "Apache-2.0 WITH Commons-Clause",
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}