-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
111 lines (111 loc) · 2.96 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "awesome-node-boilerplate",
"version": "1.0.0",
"description": "Awesome NodeJS boilerplate using TypeScript and MongoDB",
"main": "index.js",
"engines": {
"node": "10.15.3"
},
"scripts": {
"build": "babel src --out-dir dist --extensions .ts",
"dev": "nodemon --exec ts-node --files src/index.ts",
"restart": "rimraf dist && npm run build && npm start",
"start": "node dist/index.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"types-check": "tsc",
"lint": "tslint --project tsconfig.json",
"lint:fix": "tslint --fix --project tsconfig.json",
"format": "prettier \"**/*.+(js|json|ts|md|mdx|graphql)\" --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged & npm run types-check"
}
},
"lint-staged": {
"src/*.ts": "npm run lint",
"**/*.+(js|json|ts|md|mdx|graphql)": [
"npm run format",
"git add"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "6.4.0",
"bcryptjs": "2.4.3",
"body-parser": "1.19.0",
"bootstrap": "4.3.1",
"chalk": "2.4.2",
"cors": "2.8.5",
"dotenv": "8.0.0",
"express": "4.16.4",
"express-rate-limit": "4.0.2",
"express-validator": "5.3.1",
"helmet": "3.18.0",
"http-status": "1.3.2",
"jsonwebtoken": "8.5.1",
"lodash": "4.17.11",
"mongoose": "5.5.11",
"mongoose-unique-validator": "2.0.3",
"morgan": "1.9.1",
"passport": "0.4.0",
"passport-google-oauth": "2.0.0",
"passport-local": "1.0.0",
"pug": "2.0.3",
"swagger-jsdoc": "3.2.9",
"swagger-ui-express": "4.0.4",
"uuid": "3.3.2",
"winston": "3.2.1"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.4",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/preset-env": "7.4.4",
"@babel/preset-typescript": "7.3.3",
"@types/bcryptjs": "2.4.2",
"@types/chalk": "2.2.0",
"@types/cors": "2.8.5",
"@types/dotenv": "6.1.1",
"@types/express": "4.16.1",
"@types/express-rate-limit": "3.3.0",
"@types/faker": "4.1.5",
"@types/helmet": "0.0.43",
"@types/http-status": "0.2.30",
"@types/jest": "24.0.13",
"@types/jsonwebtoken": "8.3.2",
"@types/lodash": "4.14.126",
"@types/mongoose": "5.5.1",
"@types/mongoose-unique-validator": "1.0.1",
"@types/morgan": "1.7.35",
"@types/passport": "1.0.0",
"@types/passport-google-oauth": "1.0.41",
"@types/passport-local": "1.0.33",
"@types/supertest": "2.0.7",
"@types/swagger-jsdoc": "0.0.2",
"@types/swagger-ui-express": "3.0.0",
"@types/uuid": "3.4.4",
"@types/validator": "10.11.1",
"@types/winston": "2.4.4",
"babel-jest": "24.8.0",
"faker": "4.1.0",
"husky": "2.2.0",
"jest": "24.8.0",
"lint-staged": "8.1.6",
"lodash": "4.17.11",
"nodemon": "1.19.0",
"prettier": "1.17.0",
"rimraf": "2.6.3",
"supertest": "4.0.2",
"ts-jest": "24.0.2",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.4.5"
}
}