-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.52 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
{
"name": "typescript-node-boilerplate",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist/*",
"dev:watch": "tsx --respawn src/index.ts",
"dev": "tsx src/index.ts",
"format": "prettier --write 'src/**/*.{js,ts,json}'",
"lint:all": "yarn lint && yarn tscCheck",
"lint:fx": "eslint src/**/*.ts --fix",
"lint": "eslint src/**/*.ts",
"start": "tsc && node dist/index.js",
"tsc": "tsc",
"tsxCheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koji/typescript-node-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/koji/typescript-node-boilerplate/issues"
},
"packageManager": "pnpm",
"homepage": "https://github.com/koji/typescript-node-boilerplate#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^18.19.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"prettier": "^3.2.4",
"rimraf": "5.0.5",
"tsx": "4.7.0",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.ts": "tsc --noEmit",
"*.{js,ts,json}": "prettier --write"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2"
}
}