-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.95 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.95 KB
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
{
"name": "template",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node .",
"start:dev": "nodemon . -q",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage",
"test:dev": "jest --watchAll --passWithNoTests",
"build": "tsc",
"build:dev": "tsc -w",
"clean": "rimraf dist",
"rebuild": "npm run clean && npm run build",
"prettier": "prettier \"**/*.{js,jsx,ts,tsx,json,md}\"",
"prettier:check": "npm run prettier --list-different",
"prettier:fix": "npm run prettier --write",
"eslint": "eslint --max-warnings=0",
"eslint:fix": "npm run eslint --fix",
"mdlint": "markdownlint \"**/*.md\" --ignore node_modules",
"mdlint:fix": "npm run mdlint --fix",
"lint": "npm run eslint && npm run prettier:check && npm run mdlint",
"lint:fix": "npm run eslint:fix && npm run prettier:fix && npm run mdlint:fix",
"commit": "cz",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@commitlint/cz-commitlint": "^17.5.0",
"@types/jest": "^29.5.2",
"@types/node": "^20.4.0",
"@typescript-eslint/eslint-plugin": ">=5.57.0",
"@typescript-eslint/parser": ">=5.57.0",
"conventional-changelog-atom": "^3.0.0",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.57.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"markdownlint": "^0.29.0",
"markdownlint-cli": "^0.35.0",
"nodemon": "^2.0.22",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"lint-staged": "^13.2.3"
},
"config": {
"commitizen": {
"path": "./node_modules/@commitlint/cz-commitlint"
}
},
"dependencies": {},
"packageManager": "pnpm@8.6.6"
}