-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
{
"name": "typescript_node_server",
"version": "1.0.2",
"description": "node & typescript starter project",
"main": "index.js",
"scripts": {
"start": "ts-node-dev index.ts",
"dist": "rimraf dist && tsc",
"lint": "eslint . --ext .ts",
"test": "jest --detectOpenHandles --colors",
"lint-and-fix": "eslint . --ext .ts --fix --cache",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/himanshuteotia/typescript_node_server.git"
},
"author": "Himanshu Teotia",
"license": "ISC",
"keywords": [
"typescript",
"node",
"node starter",
"typescript starter"
],
"bugs": {
"url": "https://github.com/himanshuteotia/typescript_node_server/issues"
},
"homepage": "https://github.com/himanshuteotia/typescript_node_server#readme",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/lusca": "^1.7.4",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"tslint": "^6.1.3",
"typescript": "^5.3.3"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"lusca": "^1.7.0",
"winston": "^3.11.0"
},
"hooks": {
"pre-commit": "pretty-quick --staged --bail && lint-staged"
},
"lint-staged": {
"*.ts": [
"npm run lint-and-fix"
]
}
}