-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 KB
/
package.json
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
57
{
"name": "project-template",
"version": "1.0.0",
"description": "My project template in TS 💙",
"main": "build/index.js",
"scripts": {
"start": "pnpm clean && pnpm build && pnpm execute",
"test": "pnpm clean && pnpm build && jest --no-cache",
"clean": "rimraf build coverage cache",
"build": "tsc && tsc-alias",
"execute": "node build/index.js",
"dev": "node-dev -r tsconfig-paths/register src/index.ts",
"lint": "eslint . --config .eslintrc.json --cache",
"prettier": "prettier -c . --config .prettierrc.json",
"format": "prettier -w . --config .prettierrc.json",
"coverage": "typescript-coverage-report -o coverage",
"mirror-config": "node scripts/mirror-config.js",
"prepare": "husky install"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"repository": {
"type": "git",
"url": "[email protected]:MohamadKh75/project-template.git"
},
"author": "MohamadKh75",
"license": "MIT",
"dependencies": {
"js-yaml": "^4.1.0",
"winston": "^3.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@types/jest": "^29.5.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.17.3",
"@types/shelljs": "^0.8.12",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"chalk": "^4.1.2",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"node-dev": "^8.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"rimraf": "^5.0.1",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
}
}