-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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
{
"name": "node-ts-base",
"version": "1.0.2",
"description": "Node.js Typescript boilerplate to quick-start development.",
"license": "Apache-2.0",
"author": "Anselmo Lima <anselmo.dev@gmail.com>",
"bugs": {
"url": "https://github.com/anselmodev/node-ts-base/issues"
},
"homepage": "https://github.com/anselmodev/node-ts-base#readme",
"keywords": [
"typescript",
"boilerplate",
"node",
"node-typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/anselmodev/node-ts-base.git"
},
"type": "module",
"engines": {
"node": ">= 16.19 <19"
},
"bin": {
"node-ts-base": "./.bin/cli.js"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jest": "~29.2",
"@types/node": "~18",
"@typescript-eslint/eslint-plugin": "~5.44",
"@typescript-eslint/parser": "~5.44",
"cz-conventional-changelog": "^3.3.0",
"eslint": "~8.28",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~27.1",
"husky": "^8.0.2",
"jest": "~29.3",
"prettier": "~2.8",
"rimraf": "~3.0",
"ts-jest": "~29.0",
"tsutils": "~3.21",
"typescript": "~4.9"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:w": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test:cover": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"prepare": "npx husky install",
"test:w": "jest --watch",
"test": "jest"
},
"dependencies": {
"tslib": "~2.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}