-
-
Notifications
You must be signed in to change notification settings - Fork 216
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 650 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 650 Bytes
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
{
"name": "tailark",
"version": "0.1.0",
"private": true,
"author": {
"name": "Méschac Irung",
"email": "meschacirung@gmail.com",
"url": "https://x.com/MeschacIrung"
},
"packageManager": "pnpm@9.10.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"registry:build": "pnpm --filter @tailark/www registry:build"
},
"devDependencies": {
"prettier": "3.5.1",
"prettier-plugin-tailwindcss": "0.6.11",
"typescript": "^5"
},
"dependencies": {
"turbo": "^2.5.3"
}
}