-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"name": "tokenauthmongo",
"version": "1.0.0",
"description": "generate jwt token and persist in mongodb",
"main": "app.js",
"scripts": {
"dev": "node --watch ./bin/www",
"start": "node ./bin/www",
"lint": "./node_modules/.bin/eslint ./server/**/*.js",
"test": "mocha --reporter spec test/ --exit",
"coverage": "nyc mocha --exit --reporter progress ./test/",
"coverage:report": "nyc report --reporter=lcov --reporter=text",
"seeddb": "node ./seeds/seedUser.js"
},
"keywords": [
"express",
"mongodb",
"jwt"
],
"author": "danizavtz",
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-jwt": "^8.4.1",
"express-validator": "^7.0.1",
"mongodb": "^3.6.6",
"morgan": "^1.10.0"
},
"devDependencies": {
"chai": "^4.3.8",
"eslint": "^8.49.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"supertest": "^6.3.3"
}
}