-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.87 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.87 KB
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
{
"name": "express-node-ts-boilerplate",
"version": "2.0.0",
"description": "express-node-ts-boilerplate",
"main": "src/app/server.ts",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/pishangujeniya/node-ts-express-boilerplate.git"
},
"keywords": [
"NodeTs",
"Express",
"API",
"Boilerplate"
],
"author": "Pishang Ujeniya",
"license": "MIT",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bunyan": "^1.8.11",
"@types/cors": "^2.8.17",
"@types/es6-promise": "^3.3.2",
"@types/fs-extra": "^11.0.4",
"@types/jsonwebtoken": "^9.0.7",
"@types/morgan": "^1.9.9",
"@types/nodemailer": "^6.4.16",
"@types/request": "^2.48.12",
"@types/uuid": "^10.0.0",
"bcrypt": ">=5.1.1",
"bunyan": "^1.8.15",
"bunyan-rotating-file-stream": "^2.0.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"fs-extra": "^11.2.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"mysql2": "^3.11.3",
"nodemailer": "^6.9.16",
"promise": "^8.3.0",
"request": "^2.88.2",
"rotating-file-stream": "^3.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"util": "^0.12.5",
"uuid": "^11.0.2"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/express": "^5.0.0",
"@types/node": "^22.8.5",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.6.0",
"globals": "^15.11.0",
"ts-node": "^10.0.0",
"typescript": "^4.9.5",
"typescript-eslint": "^8.12.2"
}
}