-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.41 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
82
{
"name": "express-typescript-starter",
"version": "1.0.0",
"description": "This project provides a solid foundation for building scalable and maintainable back end web applications using Express.js and TypeScript!",
"keywords": [
"Express.js",
"Typescript",
"JavaScript",
"Eslint",
"Prettier",
"Template"
],
"homepage": "https://github.com/AjayKanniyappan/express-typescript-starter",
"repository": {
"type": "git",
"url": "git+https://github.com/AjayKanniyappan/express-typescript-starter.git"
},
"bugs": {
"url": "https://github.com/AjayKanniyappan/express-typescript-starter/issues"
},
"license": "MIT",
"author": {
"name": "Ajay Kanniyappan",
"email": "[email protected]",
"url": "https://ajaykanniyappan.com"
},
"scripts": {
"build": "npm run build:clean && tsc && tsc-alias && npm run copyFiles",
"build:clean": "rimraf build",
"clean": "git clean -dfX",
"copyFiles": "copyfiles -u 1 src/**/*.html src/**/*.css build/",
"dev": "nodemon",
"lint": "eslint --fix --max-warnings 0 .",
"prepare": "husky install",
"start": "npm run build && node build/server.js"
},
"dependencies": {
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.1.0",
"morgan": "^1.10.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/compression": "^1.7.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/node": "^20.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"copyfiles": "^2.4.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.6",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=14.6.0",
"npm": ">=6.x"
}
}