-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.33 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
52
53
54
55
56
57
58
59
60
{
"name": "overpowered-monorepo",
"description": "A monorepo with two next.js apps and an express api",
"license": "MIT",
"keywords": [
"monorepo",
"next.js",
"express.js",
"tailwind",
"shadcn"
],
"files": [
"apps",
"packages",
"eslintrc.js",
".gitignore",
".npmrc",
".components.json",
"LICENSE.md",
"package-lock.json",
"package.json",
"README.md",
"tsconfig.json",
"turbo.json"
],
"repository": {
"type": "git",
"url": "https://github.com/ashishrout-tech/monorepo.git"
},
"author": "ashishrout-tech",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"clean": "turbo daemon clean",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"@turbo/gen": "^1.10.12",
"eslint": "^8.46.0",
"@overpowered-monorepo/eslint-config-custom": "*",
"prettier": "^3.0.1",
"turbo": "latest"
},
"packageManager": "npm@9.7.2",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-icons": "^1.3.0",
"@types/inquirer": "^9.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"glob": "^10.3.3",
"tailwind-merge": "^1.14.0",
"tailwindcss-animate": "^1.0.6"
}
}