-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.07 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "express-typescript-starter-kit",
"version": "1.0.0",
"description": "Express & TypeScript Starter Kit with MongoDB",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest --detectOpenHandles",
"build": "tsc",
"start": "NODE_ENV=production node ./dist/src/index.js",
"dev": "nodemon",
"lint": "eslint ./src/**/*.ts --fix",
"format": "prettier ./src/**/*.ts --write",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aquie00tt/express-typescript-starter-kit.git"
},
"author": "İrfan Sönmezışıklı",
"license": "MIT",
"keywords": [
"api",
"rest-api"
],
"bugs": {
"url": "https://github.com/aquie00tt/express-typescript-starter-kit/issues"
},
"homepage": "https://github.com/aquie00tt/express-typescript-starter-kit#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-rate-limit": "^7.4.1",
"express-slow-down": "^2.0.3",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.8.1",
"morgan": "^1.10.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.7.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-rate-limit": "^6.0.2",
"@types/express-slow-down": "^1.3.5",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.9",
"@types/node": "^22.9.0",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"lint-staged": {
"src/**/*.ts": [
"npm run lint",
"npm run format"
]
}
}