-
Notifications
You must be signed in to change notification settings - Fork 704
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.41 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.41 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
72
73
74
{
"name": "nodejs-backend-architecture-typescript",
"version": "2.1.0",
"description": "The architecture for nodejs backend application. It is build on top of expressjs using typescript.",
"main": "index.js",
"scripts": {
"postinstall": "ts-node ./addons/init-project.ts",
"start": "npm run build && npm run serve",
"serve": "node -r dotenv/config build/server.js",
"build": "npm run clean && npm run build-ts",
"watch": "npx concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-node": "nodemon -r dotenv/config build/server.js",
"clean": "rimraf ./build",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"check": "tsc --noEmit",
"eslint": "eslint . --ext .js,.ts",
"upgrade": "npm update --save-dev && npm update --save",
"upgrade-latest": "npx npm-check-updates -u && npm install ",
"test": "jest --forceExit --detectOpenHandles --coverage --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/janishar/nodejs-backend-architecture-typescript.git"
},
"author": "fifocode",
"license": "Apache-2.0",
"dependencies": {
"axios": "^1.9.0",
"bcrypt": "^6.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"mongoose": "^8.14.2",
"multer": "^1.4.5-lts.2",
"newrelic": "^12.18.2",
"qs": "^6.14.0",
"redis": "^5.0.1",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cookie-parser": "^1.4.8",
"@types/cors": "^2.8.18",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/lodash": "^4.17.16",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/newrelic": "^9.14.8",
"@types/node": "^22.15.17",
"@types/request": "^2.48.12",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"colors": "^1.4.0",
"dotenv": "^16.5.0",
"eslint": "^9.26.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"supertest": "^7.1.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}