-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "my-turborepo",
"version": "1.0.1",
"private": true,
"license": "MIT",
"scripts": {
"add:api": "pnpm add --filter=api",
"add:web": "pnpm add --filter=web",
"build": "turbo build",
"changeset": "changeset",
"clear:modules": "npx npkill",
"commit": "cz",
"dev": "turbo dev",
"dev:api": "pnpm dev --filter=api",
"dev:web": "pnpm dev --filter=web",
"format": "prettier . --write",
"format:check": "prettier . --check",
"lint": "turbo lint",
"prepare": "husky",
"start": "turbo start",
"test": "turbo test"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/config-conventional": "^19.6.0",
"@types/node": "^22.0.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.5.0",
"prettier-plugin-css-order": "^2.1.2",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.4.2",
"typescript": "5.7.3",
"zod": "^3.24.1"
},
"packageManager": "pnpm@10.2.0",
"engines": {
"node": ">=20"
}
}