-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.56 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
{
"name": "nodejs-typescript-boilerplate",
"version": "1.0.0",
"main": "start.ts",
"type": "commonjs",
"scripts": {
"build": "tsc",
"dev": "nodemon src/start.ts",
"create-domain": "ts-node scripts/dev/domain-generator.ts",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cron": "^3.1.7",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"mongoose": "^8.6.3",
"morgan": "^1.10.0",
"nodemon": "^3.1.5",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/mongoose": "^5.11.96",
"@types/morgan": "^1.9.9",
"@types/node": "^22.5.5",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"eslint": "^9.11.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^10.0.0",
"prettier": "3.3.3",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0",
"zx": "^8.1.7"
}
}