-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.41 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
{
"name": "nodejs-ts-express-template",
"version": "1.0.2",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "tsnd --ignore-watch node_modules src/index.ts",
"start": "node dist/index.js",
"build": "rimraf ./dist && tsc",
"test": "jest ./src --passWithNoTests",
"prettier:check": "npx prettier --check ./src",
"prettier:fix": "npx prettier --write ./src",
"lint": "npx eslint src/**/*.ts",
"cmt": "npx git-cz"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "*"
},
"lint-staged": {
"*.{css,less,scss,html,json,jsx,js}": [
"prettier --write ."
],
"*.js": "eslint --fix"
},
"engines": {
"npm": ">=9.6.7",
"node": ">=20.11.0",
"yarn": ">=1.22.19"
}
}