forked from jimmy-lan/habits-restapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.2 KB
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
{
"name": "template-node-authentication",
"version": "1.0.0",
"description": "Template for node.js authentication with Mongo DB and Redis.",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "ts-node-dev src/index.ts",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"build": "tsc -p .",
"lint": "tsc -p . --noEmit && eslint \\\"**/*.{js,ts}\\\" --quiet --fix",
"test": "jest --forceExit --watchAll --verbose",
"testc": "jest --forceExit --coverage --verbose",
"doc": "./scripts/open-browser.sh http://localhost:3000 && docsify serve docs/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lanyanxiang/template-node-authentication.git"
},
"keywords": [],
"author": "Jimmy Lan",
"license": "ISC",
"bugs": {
"url": "https://github.com/lanyanxiang/template-node-authentication/issues"
},
"homepage": "https://github.com/lanyanxiang/template-node-authentication#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/errorhandler": "^1.5.0",
"@types/eslint": "^7.2.6",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/redis": "^2.8.28",
"@types/redis-mock": "^0.17.0",
"@types/request-ip": "^0.0.37",
"@types/supertest": "^2.0.10",
"@types/util.promisify": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"docsify-cli": "^4.4.2",
"dotenv": "^8.2.0",
"errorhandler": "^1.5.1",
"eslint": "^7.21.0",
"express-validator": "^6.10.0",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.6",
"redis-mock": "^0.56.3",
"supertest": "^6.1.3",
"ts-jest": "^26.5.3",
"ts-node-dev": "^1.1.6",
"tslint": "^6.1.3",
"typescript": "^4.2.2"
},
"dependencies": {
"@sendgrid/mail": "^7.4.2",
"bcrypt": "^5.0.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.7",
"morgan": "^1.10.0",
"rate-limiter-flexible": "^2.2.1",
"redis": "^3.0.2",
"request-ip": "^2.1.3"
}
}