forked from chakra-ui/ark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.62 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
{
"name": "@ark-ui/root",
"version": "0.0.0",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"prepare": "husky install",
"build": "turbo run build --filter='!./templates/**'",
"exports:check": "pnpm scripts exports:check",
"exports:sync": "pnpm scripts exports:sync",
"format:check": "prettier --plugin prettier-plugin-organize-imports --check packages/**/src",
"format:write": "prettier --plugin prettier-plugin-organize-imports --write packages/**/src",
"lint": "turbo run lint",
"test": "turbo run test:ci",
"typecheck": "turbo run typecheck",
"document": "concurrently 'pnpm:document:*'",
"document:types": "turbo run typedocs",
"document:stories": "turbo run storydocs",
"react": "pnpm --filter=@ark-ui/react",
"solid": "pnpm --filter=@ark-ui/solid",
"vue": "pnpm --filter=@ark-ui/vue",
"anatomy": "pnpm --filter=@ark-ui/anatomy",
"scripts": "pnpm --filter=@ark-ui/scripts",
"website": "pnpm --filter=@ark-ui/website"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.2",
"concurrently": "8.2.2",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"prettier-plugin-astro": "0.13.0",
"prettier-plugin-organize-imports": "3.2.4",
"react": "18.2.0",
"turbo": "1.12.5",
"typescript": "5.3.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [
"prettier --plugin prettier-plugin-organize-imports --write"
]
},
"packageManager": "[email protected]"
}