-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·74 lines (74 loc) · 1.9 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
{
"name": "nodejs-template",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest --verbose -i",
"test:cov": "jest --coverage --verbose",
"test:watch": "jest --watch --verbose",
"dev": "nodemon",
"build": "npm run clean && tsc",
"build:webpack": "webpack",
"lint": "eslint",
"clean": "rimraf dist",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vinaymavi/nodejs-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/vinaymavi/nodejs-template/issues"
},
"homepage": "https://github.com/vinaymavi/nodejs-template#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@sendgrid/mail": "^7.1.1",
"bcrypt": "^4.0.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-jwt": "^5.3.3",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.7",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/express-jwt": "0.0.42",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.2.1",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.10",
"@types/node": "^13.11.0",
"copy-webpack-plugin": "^5.1.1",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.1.0",
"jest-junit-reporter": "^1.1.0",
"mockingoose": "^2.13.2",
"node-mocks-http": "^1.8.1",
"nodemon": "^2.0.2",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}