-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.08 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
62
63
64
65
66
67
68
69
70
71
72
{
"name": "node-typescript-express-mongo-template",
"version": "1.0.0",
"description": "A minimalist TypeScript-Express boilerplate",
"keywords": [
"TypeScript",
"express",
"nodejs",
"boilerplate",
"eslint"
],
"author": "Shrujal Shah <shrujal@peerbits.com>",
"main": "dist/index.js",
"scripts": {
"eslint": "eslint \"**/*.ts\"",
"eslint:fix": "eslint \"**/*.ts\" --fix",
"postinstall": "chmod +x ./scripts/dev.sh",
"build": "tsc",
"dev": "./scripts/dev.sh",
"start": "node dist/server.js",
"test": "jest",
"ts-node": "ts-node --transpile-only --pretty src/server.ts",
"prettier": "prettier --check \"**/*.ts\"",
"prettier:fix": "prettier --write \"**/*.ts\""
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"envalid": "^6.0.2",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.10.16",
"nodemailer": "^6.4.17",
"nodemailer-smtp-transport": "^2.7.4",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.9",
"@types/express": "4.17.4",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.3",
"@types/nodemailer": "^6.4.0",
"@types/nodemailer-smtp-transport": "^2.7.4",
"@types/supertest": "^2.0.11",
"@types/swagger-ui-express": "^4.1.2",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^25.5.4",
"jest-express": "^1.12.0",
"mockingoose": "^2.13.2",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"supertest": "^6.1.3",
"swagger-ui-express": "^4.1.6",
"ts-jest": "^25.5.1",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"license": "MIT"
}