-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "express-typescript-starter",
"version": "1.0.1",
"description": "ExpressJS and TypeScript Starter Project",
"main": "./dist/server.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register ./src/server.ts",
"start": "yarn build && node ./dist/server.js",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format": "prettier ./src --write",
"format:check": "prettier ./src --check",
"build": "tsc && tsc-alias",
"generate-module": "ts-node ./cli/index.ts generate-module"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noyonalways/express-typescript-starter.git"
},
"keywords": [
"express",
"mongoose",
"typescript"
],
"author": "Noyon Rahman",
"license": "ISC",
"bugs": {
"url": "https://github.com/noyonalways/express-typescript-starter/issues"
},
"homepage": "https://github.com/noyonalways/express-typescript-starter#readme",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "4.0.0",
"colors": "^1.4.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fs-extra": "^11.2.0",
"helmet": "^7.1.0",
"http-status": "1.7.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.3.5",
"morgan": "^1.10.0",
"zod": "^3.23.8"
}
}