-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"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 <satish.babariya@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"prestart:prod": "rimraf dist && npm run build",
"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": "^2.0.2",
"argon2": "0.24.0",
"body-parser": "1.19.0",
"celebrate": "10.0.1",
"cors": "2.8.5",
"dotenv": "8.0.0",
"express": "4.17.1",
"express-jwt": "5.3.1",
"helmet": "3.20.0",
"joi": "^14.3.1",
"jsonwebtoken": "8.5.1",
"mongodb": "3.3.0",
"reflect-metadata": "0.1.13",
"typedi": "0.8.0",
"typeorm": "0.2.18",
"typeorm-typedi-extensions": "0.2.3"
},
"devDependencies": {
"@types/agenda": "^2.0.5",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "4.17.0",
"@types/express-jwt": "0.0.42",
"@types/helmet": "0.0.43",
"@types/jest": "24.0.17",
"@types/joi": "^14.3.3",
"@types/morgan": "1.7.36",
"@types/node": "12.7.2",
"jest": "24.8.0",
"nodemon": "1.19.1",
"prettier": "^1.18.2",
"ts-jest": "24.0.2",
"ts-node": "8.3.0",
"tslint": "5.18.0",
"typescript": "^3.5.3"
}
}