forked from froggy1014/meta-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "meta-cloud-api",
"private": true,
"scripts": {
"prepare": "husky",
"cz": "cz",
"dev": "turbo dev",
"build": "turbo build",
"lint": "turbo lint",
"format": "turbo format",
"publish-packages": "turbo run build lint && changeset version && changeset publish",
"clean": "rm -rf node_modules && turbo clean"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@commitlint/types": "^19.5.0",
"commitizen": "^4.3.1",
"eslint": "^9.20.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.5.0",
"prettier-plugin-tailwindcss": "^0.6.10",
"turbo": "^2.4.2",
"typescript": "5.7.3"
},
"packageManager": "pnpm@10.0.0",
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"lint-staged": {
"**/*.{ts,tsx}": [
"prettier --write --ignore-unknown"
],
"./apps/playground/**/*.{ts,tsx}": [
"pnpm --filter playground lint"
],
"./apps/www/**/*.{ts,tsx}": [
"pnpm --filter www lint"
],
"./packages/ui/**/*.{ts,tsx}": [
"pnpm --filter ui lint"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
}
}