-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.32 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.32 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
{
"name": "webdevstudios-fullstack-turborepo",
"version": "1.0.0",
"license": "SEE LICENSE IN LICENSE.md",
"author": "Xiro The Dev <lethanhtrung.trungle@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/xirothedev/webdevstudios.git"
},
"homepage": "https://github.com/xirothedev/webdevstudios",
"bugs": {
"url": "https://github.com/xirothedev/webdevstudios/issues"
},
"private": true,
"scripts": {
"dev": "turbo run dev --parallel",
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "prettier --write \"apps/api/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\" \"*.{js,jsx,ts,tsx,json,md,yml,yaml}\" && cd apps/web && pnpm format",
"format:check": "prettier --check \"apps/api/**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\" \"*.{js,jsx,ts,tsx,json,md,yml,yaml}\" && cd apps/web && pnpm format:check",
"clean": "turbo run clean",
"prepare": "husky",
"audit": "pnpm audit --audit-level=moderate",
"audit:fix": "pnpm audit --fix"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"turbo": "^2.7.2",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@10.26.1",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}