This repository has been archived by the owner on Jun 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.29 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
{
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"description": "npm package template",
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@ridedott/eslint-config": "^1.1.44",
"@types/jest": "^27.5.0",
"@types/node": "^17.0.44",
"commitizen": "^4.2.4",
"cspell": "^6.1.2",
"eslint": "^7.32.0",
"fast-check": "^2.25.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.2.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.0",
"ts-jest": "^26.5.6",
"ts-node": "^10.8.1"
},
"engines": {
"node": ">=14",
"npm": ">=7"
},
"files": [
"lib",
"src"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run husky:pre-commit"
}
},
"license": "UNLICENSED",
"lint-staged": {
"*.ts": [
"eslint"
],
"*.{json,md,ts,yml,yaml}": [
"prettier --write"
]
},
"main": "lib/index.js",
"name": "@ridedott/back-end-assignment-boilerplate",
"private": true,
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "[email protected]:ridedott/back-end-assignment-boilerplate.git"
},
"scripts": {
"build": "run-s clean build:*",
"build:ts": "tsc --project tsconfig.production.json",
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
"clean": "rm -rf lib",
"cz": "git-cz",
"cz:retry": "git-cz --retry",
"format": "prettier --check \"**/*.{js,json,md,ts,yml,yaml}\"",
"format:fix": "prettier --write \"**/*.{js,json,md,ts,yml,yaml}\"",
"husky:lint-staged": "lint-staged",
"husky:pre-commit": "run-p spellcheck husky:lint-staged",
"lint": "eslint --resolve-plugins-relative-to \"./node_modules/@ridedott/eslint-config\" \"**/*.ts\"",
"lint:fix": "eslint --fix --resolve-plugins-relative-to \"./node_modules/@ridedott/eslint-config\" \"**/*.ts\"",
"spellcheck": "cspell \"**/*\"",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:watch": "jest --watch --verbose false",
"types": "tsc --outDir '/tmp/tsc-void' # https://github.com/Microsoft/TypeScript/issues/30661"
},
"version": "1.0.0"
}