-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
55
56
{
"name": "@malang-dev/template-typescript",
"version": "1.0.0",
"description": "Template repository for new TypeScript projects",
"repository": {
"type": "git",
"url": "https://github.com/malang-dev/template-typescript"
},
"author": {
"name": "Malang.dev",
"email": "hello@malang.dev",
"url": "https://malang.dev/"
},
"type": "module",
"license": "MIT",
"private": true,
"scripts": {
"prepare": "husky",
"prebuild": "rimraf dist",
"format": "prettier --write .",
"build": "tsc -b tsconfig.build.json",
"lint": "eslint \"src/**/*.ts\" --fix",
"lint-staged": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"cross-env": "^10.0.0",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^17.2.0",
"husky": "^9.0.11",
"jest": "^30.0.0",
"lint-staged": "^16.0.0",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^4.0.0",
"rimraf": "^6.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2",
"typescript-eslint": "^8.0.0"
},
"lint-staged": {
"src/**/*.ts": [
"eslint \"src/**/*.ts\"",
"prettier --write --ignore-unknown"
]
},
"engines": {
"node": ">= 20"
},
"packageManager": "yarn@4.12.0"
}