generated from haru52/base_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@haru52/usermgr",
"version": "3.4.0",
"description": "CLI of a user management system. This is an example TypeScript project of Clean Architecture.",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.x",
"npm": ">=8.x"
},
"files": [
"dist"
],
"bin": "dist/index.js",
"scripts": {
"clean": "run-s --continue-on-error clean:*",
"clean:dist": "rm -rf dist",
"clean:db": "rm -f \"$HOME\"/.usermgr/usermgr.db",
"lint": "run-s --continue-on-error lint:*",
"lint:credentials": "[ \"$CI\" = 'true' ] || secretlint \"**/*\"",
"lint:md": "markdownlint . \".?*/**/*.{md,markdown}\"",
"lint:prettier": "prettier --check .",
"lint:es": "eslint --cache .",
"format": "run-s --continue-on-error format:*",
"format:md": "npm run lint:md -- --fix",
"format:prettier": "prettier --write .",
"format:es": "npm run lint:es -- --fix",
"prebuild": "npm run clean:dist",
"build": "ts-node bin/update-package-data.ts && tsc --project tsconfig.build.json",
"test": "jest --silent",
"jscpd": "jscpd src bin",
"commit": "cz",
"cm": "npm run commit",
"prepare": "[ \"$CI\" = 'true' ] || husky install",
"postversion": "run-s build jscpd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haru52/clean-user-manager.git"
},
"keywords": [
"clean-architecture",
"cli"
],
"author": {
"name": "haru",
"url": "https://haru52.com/"
},
"license": "WTFPL",
"bugs": {
"url": "https://github.com/haru52/clean-user-manager/issues"
},
"homepage": "https://github.com/haru52/clean-user-manager#readme",
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/cz-commitlint": "^17.4.2",
"@jscpd/badge-reporter": "^3.4.5",
"@secretlint/secretlint-rule-preset-recommend": "^6.0.2",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/sqlite3": ">=3.1.8 <5.1.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"commitizen": "^4.2.6",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.3",
"jest": "^29.3.1",
"jscpd": "^3.5.3",
"lint-staged": "^13.1.0",
"markdownlint-cli": ">=0.33.0 <1.0.0",
"npm-check-updates": "^16.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"secretlint": "^6.0.2",
"semantic-release": "^20.0.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"commander": "^10.0.0",
"reflect-metadata": ">=0.1.13 <1.0.0",
"sqlite3": "^5.1.4",
"tsyringe": "^4.7.0"
}
}