-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "nodejs-boilerplate",
"version": "1.0.0",
"description": "Clean Architecture for node.js projects (Typescript + Express + TypeORM + Typedi)",
"main": "main.ts",
"repository": "https://github.com/satishbabariya/nodejs-boilerplate.git",
"author": "Satish Babariya <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"start:prod": "node dist/main.js",
"start": "nodemon",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"agenda": "^5.0.0",
"argon2": "^0.31.1",
"body-parser": "^1.20.0",
"celebrate": "^15.0.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-jwt": "^8.4.1",
"helmet": "^7.0.0",
"joi": "^17.6.0",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.2.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0",
"typeorm": "^0.3.10",
"typeorm-typedi-extensions": "^0.4.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^29.5.6",
"@types/morgan": "^1.9.3",
"@types/node": "^20.8.9",
"chai": "^4.3.10",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^5.2.2"
}
}