generated from malang-dev/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.03 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.03 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
{
"name": "@malang-dev/template-nodejs",
"version": "1.0.0",
"description": "Template repository for new TypeScript projects",
"repository": {
"type": "git",
"url": "https://github.com/malang-dev/template-nodejs"
},
"author": {
"name": "Malang.dev",
"email": "hello@malang.dev",
"url": "https://malang.dev/"
},
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"prepare": "husky",
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"format": "turbo run format",
"lint-staged": "lint-staged"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^16.0.0",
"prettier": "^3.2.5",
"turbo": "^2.5.0"
},
"lint-staged": {
"**/*.{ts,js,cjs}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*.{json,yaml}": [
"prettier --write"
]
},
"engines": {
"node": ">= 20"
},
"packageManager": "yarn@4.12.0"
}