-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "my-ts-node-starter",
"version": "0.0.9",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prettier": "prettier 'lib/**/**.{js,ts}' 'test/**/**.{js,ts}' --check --ignore-unknown",
"prettier:fix": "prettier lib/**/**.{js,ts}' 'test/**/**.{js,ts}' -w",
"lint": "eslint",
"lint:fix" :"eslint --fix",
"prepare": "husky",
"release": "release-it"
},
"author": "Sobirov Diyorbek <sabirovdiyorkind@gmail.com>",
"license": "MIT",
"description": "My TypeScript Node.js Starter",
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"husky": "^9.1.4",
"prettier": "^3.4.1",
"release-it": "^18.1.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.20.0"
},
"overrides": {"eslint":"^9.8.0"},
"repository": {
"type": "git",
"url": "https://github.com/DIY0R/my-ts-node-starter"
},
"homepage": "https://github.com/DIY0R/my-ts-node-starter",
"bugs": {
"url": "https://github.com/DIY0R/my-ts-node-starter/issues"
},
"keywords": [
"eslint","prettier","ts","commitlint"," release-it","husky-hooks"
],
"npm": {
"publish": true
},
"publishConfig": {
"access": "public"
},
"private": false
}