-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 KB
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
{
"name": "draftscripts",
"version": "1.0.0",
"description": "This is a full stack application with react, vue and node",
"packageManager": "pnpm@10.11.0",
"scripts": {
"dev": "turbo dev",
"lint": "turbo lint",
"build": "turbo build",
"format": "prettier --write \"**/*.{js,jsx,css,ts,tsx}\"",
"saas": "turbo dev --filter=saas",
"showcase": "turbo dev --filter=showcase",
"portfolio": "turbo dev --filter=portfolio"
},
"keywords": [
"react",
"vue",
"fullstack",
"typescript",
"javascript",
"nextjs",
"tailwindcss",
"express",
"mongodb",
"postgresql"
],
"author": "Kamruzzaman",
"license": "MIT",
"devDependencies": {
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"dependencies": {
"lucide-react": "^0.539.0"
},
"prettier": {
"$schema": "https://json.schemastore.org/prettierrc",
"semi": true,
"tabWidth": 4,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none",
"bracketSameLine": true,
"endOfLine": "crlf",
"vueIndentScriptAndStyle": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}