forked from shadcn-ui/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.28 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": "ui",
"version": "0.0.1",
"private": true,
"author": {
"name": "shadcn",
"url": "https://twitter.com/shadcn"
},
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "turbo run lint",
"preview": "turbo run preview",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"sync:templates": "./scripts/sync-templates.sh \"templates/*\""
},
"packageManager": "[email protected]",
"dependencies": {
"@babel/core": "^7.20.7",
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"eslint": "^8.31.0",
"eslint-config-next": "13.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-turbo": "^0.0.7",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-tailwindcss": "^3.8.0",
"tailwindcss-animate": "^1.0.5",
"turbo": "^1.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^18.11.9",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"autoprefixer": "^10.4.8",
"husky": "^8.0.2",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"tailwindcss": "^3.1.7",
"typescript": "4.7.4"
}
}