-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.31 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
{
"name": "clab-platforms",
"private": true,
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "turbo run dev",
"prebuild": "pnpm -F @clab-platforms/design-system build && pnpm -F @clab-platforms/icon build",
"build": "turbo run build",
"type": "turbo run type",
"test": "turbo run test",
"coverage": "turbo run coverage",
"lint": "turbo run lint",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache"
],
"**/*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.20",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"turbo": "^2.0.9",
"typescript": "^5.3.3"
}
}