-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
{
"name": "nodejs-typescript-boilerplate",
"version": "0.0.1",
"description": "nodejs-typescript-boilerplate",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate.git"
},
"bugs": {
"url": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate/issues"
},
"homepage": "https://github.com/sweatpotato13/nodejs-typescript-boilerplate",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"start:dev": "ts-node-dev --poll --respawn --transpile-only src/index.ts --trace-sync-io",
"start:prod": "ts-node src/index.ts",
"lint": "eslint \"{src,test}/**/*.ts\" --fix",
"prettier": "prettier --write --config .prettierrc \"{src,test}/**/*.ts\"",
"build": "tsc",
"prebuild": "rimraf ./dist",
"pre-commit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"yarn run eslint --fix"
],
"*.{md,json}": [
"prettier --write"
]
},
"author": "Cute_Wisp <sweatpotato13@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@swc/core": "1.10.16",
"@swc/helpers": "^0.5.15",
"@types/eslint__js": "^8.42.3",
"@types/jest": "29.5.14",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.15.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "^15.4.3",
"prettier": "^3.5.1",
"rimraf": "^6.0.1",
"ts-jest": "29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "5.7.3",
"typescript-eslint": "8.24.0"
}
}